diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5c7247b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,7 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [] +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp.NTests/ProductTests.cs b/06 - Testing/Testing/SimpleApp.NTests/ProductTests.cs new file mode 100644 index 0000000..15af50b --- /dev/null +++ b/06 - Testing/Testing/SimpleApp.NTests/ProductTests.cs @@ -0,0 +1,44 @@ +using SimpleApp.Models; +using NUnit.Framework; +using System.Diagnostics; + +namespace SimpleApp.NTests +{ + [DebuggerDisplay("{" + nameof(GetDebuggerDisplay) + "(),nq}")] + public class ProductTests + { + [SetUp] + public void Setup() + { + } + + [Test] + public void CanChangeProductName() + { + //Arrange + var p = new Product { Name = "Test", Price = 100M }; + + //Act + p.Name = "New Name"; + + //Assert + Assert.Pass("New Name", p.Name); + } + + [Fact] + public void CanChangeProductPrice() + { + // Arrange + var p = new Product { Name = "Test", Price = 100M }; + // Act + p.Price = 200M; + //Assert + Assert.Equal(100M, p.Price); + } + + private string GetDebuggerDisplay() + { + return ToString(); + } + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp.NTests/SimpleApp.NTests.csproj b/06 - Testing/Testing/SimpleApp.NTests/SimpleApp.NTests.csproj new file mode 100644 index 0000000..45daadc --- /dev/null +++ b/06 - Testing/Testing/SimpleApp.NTests/SimpleApp.NTests.csproj @@ -0,0 +1,19 @@ + + + + netcoreapp3.1 + + false + + + + + + + + + + + + + diff --git a/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.dgspec.json b/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.dgspec.json new file mode 100644 index 0000000..609ae78 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.dgspec.json @@ -0,0 +1,79 @@ +{ + "format": 1, + "restore": { + "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\SimpleApp.NTests.csproj": {} + }, + "projects": { + "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\SimpleApp.NTests.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\SimpleApp.NTests.csproj", + "projectName": "SimpleApp.NTests", + "projectPath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\SimpleApp.NTests.csproj", + "packagesPath": "C:\\Users\\jeann\\.nuget\\packages\\", + "outputPath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\jeann\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.4.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[3.15.1, )" + }, + "nunit": { + "target": "Package", + "version": "[3.12.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.g.props b/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.g.props new file mode 100644 index 0000000..dcf23fe --- /dev/null +++ b/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\jeann\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.6.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + C:\Program Files\dotnet\sdk\NuGetFallbackFolder\newtonsoft.json\9.0.1 + + \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.g.targets b/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.g.targets new file mode 100644 index 0000000..4290ad0 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp.NTests/obj/SimpleApp.NTests.csproj.nuget.g.targets @@ -0,0 +1,11 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp.NTests/obj/project.assets.json b/06 - Testing/Testing/SimpleApp.NTests/obj/project.assets.json new file mode 100644 index 0000000..bd454df --- /dev/null +++ b/06 - Testing/Testing/SimpleApp.NTests/obj/project.assets.json @@ -0,0 +1,4690 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.CodeCoverage/16.4.0": { + "type": "package", + "compile": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "type": "package", + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + } + }, + "Microsoft.NET.Test.Sdk/16.4.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "16.4.0", + "Microsoft.TestPlatform.TestHost": "16.4.0" + }, + "build": { + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/16.4.0": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.4.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "16.4.0", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp2.1/testhost.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp2.1/testhost.dll": {} + }, + "resource": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "Microsoft.Win32.Registry/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Frameworks/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "NUnit/3.12.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/nunit.framework.dll": {} + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": {} + }, + "build": { + "build/NUnit.props": {} + } + }, + "NUnit3TestAdapter/3.15.1": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "System.ComponentModel.EventBasedAsync": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.Process": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "build": { + "build/netcoreapp2.0/NUnit3TestAdapter.props": {} + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "Microsoft.Win32.Registry": "4.3.0", + "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.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeCoverage/16.4.0": { + "sha512": "qb7PMVZMAY5iUCvB/kDUEt9xqazWKZoKY/sGpAJO4VtwgN5IcEgipCu3n0i1GPCwGbWVL6k4a8a9F+FqmADJng==", + "type": "package", + "path": "microsoft.codecoverage/16.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.16.4.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.CSharp/4.0.1": { + "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "type": "package", + "path": "microsoft.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.0.1.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", + "type": "package", + "path": "microsoft.dotnet.internalabstractions/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.DotNet.InternalAbstractions.dll", + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll", + "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512", + "microsoft.dotnet.internalabstractions.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/16.4.0": { + "sha512": "gjjqS3rCzg4DrSQq4YwJwUUvc49HtXpXrZkW9fu5VG+K4X+Ztn4+UzolyML7wPnl/EAIufk4hu628bJB4WtpFg==", + "type": "package", + "path": "microsoft.net.test.sdk/16.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net40/Microsoft.NET.Test.Sdk.props", + "build/net40/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets", + "build/uap10.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "microsoft.net.test.sdk.16.4.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.TestPlatform.ObjectModel/16.4.0": { + "sha512": "4geKywSUJHHrfBTr1wJXUVWP0Vx1X03oFQAdZdGa8jK8p5MSwsJ4Vd0/mqN0dB2YXaIXIhDT94ti5WQ1KZ4jdw==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/16.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.16.4.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/16.4.0": { + "sha512": "tMlz3uc7VUZSYYslyVOVXH40KexTptZMAi8gIE+5w+SIt8I0qLPObpqX6QVLWszPr7sxX4WAKTiFgqgBB1MxjA==", + "type": "package", + "path": "microsoft.testplatform.testhost/16.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp2.1/x64/testhost.dll", + "build/netcoreapp2.1/x64/testhost.exe", + "build/netcoreapp2.1/x86/testhost.x86.dll", + "build/netcoreapp2.1/x86/testhost.x86.exe", + "build/uap10.0/Microsoft.TestPlatform.TestHost.props", + "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", + "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/x64/msdia140.dll", + "build/uap10.0/x86/msdia140.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/_._", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/testhost.deps.json", + "lib/netcoreapp2.1/testhost.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/x64/msdia140.dll", + "lib/netcoreapp2.1/x86/msdia140.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/uap10.0/testhost.dll", + "microsoft.testplatform.testhost.16.4.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.3.0": { + "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", + "type": "package", + "path": "microsoft.win32.registry/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.3.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" + ] + }, + "NETStandard.Library/2.0.0": { + "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", + "type": "package", + "path": "netstandard.library/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/NETStandard.Library.targets", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.0.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/9.0.1": { + "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", + "type": "package", + "path": "newtonsoft.json/9.0.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.9.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "tools/install.ps1" + ] + }, + "NuGet.Frameworks/5.0.0": { + "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", + "type": "package", + "path": "nuget.frameworks/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net472/NuGet.Frameworks.dll", + "lib/net472/NuGet.Frameworks.xml", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.xml", + "nuget.frameworks.5.0.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "NUnit/3.12.0": { + "sha512": "3oJTrcUcT9wmweBUwgUf0f1XIYy6RZq2ziV+RM95HMKAJGsHPN2i3MKK1dAPvDPMRLz799Llj4eyu/STB9Q7OA==", + "type": "package", + "path": "nunit/3.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGES.md", + "LICENSE.txt", + "NOTICES.txt", + "build/NUnit.props", + "lib/net35/nunit.framework.dll", + "lib/net35/nunit.framework.pdb", + "lib/net35/nunit.framework.xml", + "lib/net40/nunit.framework.dll", + "lib/net40/nunit.framework.pdb", + "lib/net40/nunit.framework.xml", + "lib/net45/nunit.framework.dll", + "lib/net45/nunit.framework.pdb", + "lib/net45/nunit.framework.xml", + "lib/netstandard1.4/nunit.framework.dll", + "lib/netstandard1.4/nunit.framework.pdb", + "lib/netstandard1.4/nunit.framework.xml", + "lib/netstandard2.0/nunit.framework.dll", + "lib/netstandard2.0/nunit.framework.pdb", + "lib/netstandard2.0/nunit.framework.xml", + "nunit.3.12.0.nupkg.sha512", + "nunit.nuspec" + ] + }, + "NUnit3TestAdapter/3.15.1": { + "sha512": "gqy0llGjhJYq9ebFvtbmBcF/MY8z5kcTIxYs+eXwp2d4Ntha8pSPxUzryvBm7H46VbWI6FS5/XNbxwiQpe88vQ==", + "type": "package", + "path": "nunit3testadapter/3.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "build/net35/NUnit3.TestAdapter.dll", + "build/net35/NUnit3.TestAdapter.pdb", + "build/net35/NUnit3TestAdapter.props", + "build/net35/nunit.engine.api.dll", + "build/net35/nunit.engine.dll", + "build/netcoreapp1.0/NUnit3.TestAdapter.dll", + "build/netcoreapp1.0/NUnit3.TestAdapter.pdb", + "build/netcoreapp1.0/NUnit3TestAdapter.props", + "build/netcoreapp1.0/nunit.engine.api.dll", + "build/netcoreapp1.0/nunit.engine.dll", + "build/netcoreapp2.0/NUnit3.TestAdapter.dll", + "build/netcoreapp2.0/NUnit3.TestAdapter.pdb", + "build/netcoreapp2.0/NUnit3TestAdapter.props", + "build/netcoreapp2.0/nunit.engine.api.dll", + "build/netcoreapp2.0/nunit.engine.dll", + "nunit3testadapter.3.15.1.nupkg.sha512", + "nunit3testadapter.nuspec" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "System.AppContext/4.1.0": { + "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "type": "package", + "path": "system.appcontext/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.1.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.3.0": { + "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==", + "type": "package", + "path": "system.componentmodel.eventbasedasync/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll", + "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512", + "system.componentmodel.eventbasedasync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.3.0": { + "sha512": "J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", + "type": "package", + "path": "system.diagnostics.process/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.3.0.nupkg.sha512", + "system.diagnostics.process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "type": "package", + "path": "system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.0.1.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11": { + "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "type": "package", + "path": "system.dynamic.runtime/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.0.11.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "type": "package", + "path": "system.linq.expressions/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.1.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.ObjectModel/4.0.12": { + "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "type": "package", + "path": "system.objectmodel/4.0.12", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.0.12.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.1": { + "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "type": "package", + "path": "system.reflection.emit/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.0.1.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Thread/4.3.0": { + "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "type": "package", + "path": "system.threading.thread/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.thread.4.3.0.nupkg.sha512", + "system.threading.thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.3.0": { + "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "type": "package", + "path": "system.threading.threadpool/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.3.0.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "type": "package", + "path": "system.xml.xdocument/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.0.11.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XPath/4.3.0": { + "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "type": "package", + "path": "system.xml.xpath/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.4.3.0.nupkg.sha512", + "system.xml.xpath.nuspec" + ] + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "sha512": "A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xpath.xmldocument.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.NET.Test.Sdk >= 16.4.0", + "NUnit3TestAdapter >= 3.15.1", + "nunit >= 3.12.0" + ] + }, + "packageFolders": { + "C:\\Users\\jeann\\.nuget\\packages\\": {}, + "C:\\Microsoft\\Xamarin\\NuGet\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\SimpleApp.NTests.csproj", + "projectName": "SimpleApp.NTests", + "projectPath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\SimpleApp.NTests.csproj", + "packagesPath": "C:\\Users\\jeann\\.nuget\\packages\\", + "outputPath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\jeann\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.4.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[3.15.1, )" + }, + "nunit": { + "target": "Package", + "version": "[3.12.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp.NTests/obj/project.nuget.cache b/06 - Testing/Testing/SimpleApp.NTests/obj/project.nuget.cache new file mode 100644 index 0000000..943098f --- /dev/null +++ b/06 - Testing/Testing/SimpleApp.NTests/obj/project.nuget.cache @@ -0,0 +1,72 @@ +{ + "version": 2, + "dgSpecHash": "GhHn+oO3HxuqV8x0FQtQ4clMcOoH3cUpYx659fi9PaGGDXxtvgmyeyWX0g+cFfILxbyuhunZ9yG1Hwr0Ds8+Qg==", + "success": true, + "projectFilePath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp.NTests\\SimpleApp.NTests.csproj", + "expectedPackageFiles": [ + "C:\\Users\\jeann\\.nuget\\packages\\microsoft.codecoverage\\16.4.0\\microsoft.codecoverage.16.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\microsoft.dotnet.internalabstractions\\1.0.0\\microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\microsoft.net.test.sdk\\16.4.0\\microsoft.net.test.sdk.16.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\microsoft.testplatform.objectmodel\\16.4.0\\microsoft.testplatform.objectmodel.16.4.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\microsoft.testplatform.testhost\\16.4.0\\microsoft.testplatform.testhost.16.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.registry\\4.3.0\\microsoft.win32.registry.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\nuget.frameworks\\5.0.0\\nuget.frameworks.5.0.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\nunit\\3.12.0\\nunit.3.12.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\nunit3testadapter\\3.15.1\\nunit3testadapter.3.15.1.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.componentmodel.eventbasedasync\\4.3.0\\system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.process\\4.3.0\\system.diagnostics.process.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.threadpool\\4.3.0\\system.threading.threadpool.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xpath\\4.3.0\\system.xml.xpath.4.3.0.nupkg.sha512", + "C:\\Users\\jeann\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.3.0\\system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/Properties/launchSettings.json b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/Properties/launchSettings.json new file mode 100644 index 0000000..1f271e5 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:49234", + "sslPort": 0 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "SimpleApp": { + "commandName": "Project", + "launchBrowser": true, + "applicationUrl": "http://localhost:5000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.Views.dll b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.Views.dll new file mode 100644 index 0000000..8eecc73 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.Views.dll differ diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.Views.pdb b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.Views.pdb new file mode 100644 index 0000000..bae357c Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.Views.pdb differ diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.deps.json b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.deps.json new file mode 100644 index 0000000..99986db --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.deps.json @@ -0,0 +1,3428 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NETCOREAPP", + "NETCOREAPP3_1" + ], + "languageVersion": "", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v3.1": { + "SimpleApp/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Antiforgery": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0", + "Microsoft.AspNetCore.Authentication": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0", + "Microsoft.AspNetCore.Authorization": "3.1.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0", + "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0", + "Microsoft.AspNetCore.Components": "3.1.0.0", + "Microsoft.AspNetCore.Components.Forms": "3.1.0.0", + "Microsoft.AspNetCore.Components.Server": "3.1.0.0", + "Microsoft.AspNetCore.Components.Web": "3.1.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0", + "Microsoft.AspNetCore.Cors": "3.1.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0", + "Microsoft.AspNetCore": "3.1.0.0", + "Microsoft.AspNetCore.HostFiltering": "3.1.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Hosting": "3.1.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0", + "Microsoft.AspNetCore.Http.Connections": "3.1.0.0", + "Microsoft.AspNetCore.Http": "3.1.0.0", + "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Features": "3.1.0.0", + "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0", + "Microsoft.AspNetCore.Identity": "3.1.0.0", + "Microsoft.AspNetCore.Localization": "3.1.0.0", + "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0", + "Microsoft.AspNetCore.Metadata": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0", + "Microsoft.AspNetCore.Mvc": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0", + "Microsoft.AspNetCore.Razor": "3.1.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0", + "Microsoft.AspNetCore.Rewrite": "3.1.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Routing": "3.1.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0", + "Microsoft.AspNetCore.Server.IIS": "3.1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0", + "Microsoft.AspNetCore.Session": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0", + "Microsoft.AspNetCore.SignalR": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0", + "Microsoft.AspNetCore.StaticFiles": "3.1.0.0", + "Microsoft.AspNetCore.WebSockets": "3.1.0.0", + "Microsoft.AspNetCore.WebUtilities": "3.1.0.0", + "Microsoft.CSharp": "4.0.0.0", + "Microsoft.Extensions.Caching.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Caching.Memory": "3.1.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Configuration.Binder": "3.1.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0", + "Microsoft.Extensions.Configuration": "3.1.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0", + "Microsoft.Extensions.Configuration.Ini": "3.1.0.0", + "Microsoft.Extensions.Configuration.Json": "3.1.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0", + "Microsoft.Extensions.Configuration.Xml": "3.1.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0.0", + "Microsoft.Extensions.DependencyInjection": "3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0.0", + "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0", + "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Hosting": "3.1.0.0", + "Microsoft.Extensions.Http": "3.1.0.0", + "Microsoft.Extensions.Identity.Core": "3.1.0.0", + "Microsoft.Extensions.Identity.Stores": "3.1.0.0", + "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Localization": "3.1.0.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Logging.Configuration": "3.1.0.0", + "Microsoft.Extensions.Logging.Console": "3.1.0.0", + "Microsoft.Extensions.Logging.Debug": "3.1.0.0", + "Microsoft.Extensions.Logging": "3.1.0.0", + "Microsoft.Extensions.Logging.EventLog": "3.1.0.0", + "Microsoft.Extensions.Logging.EventSource": "3.1.0.0", + "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0", + "Microsoft.Extensions.ObjectPool": "3.1.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0", + "Microsoft.Extensions.Options": "3.1.0.0", + "Microsoft.Extensions.Primitives": "3.1.0.0", + "Microsoft.Extensions.WebEncoders": "3.1.0.0", + "Microsoft.JSInterop": "3.1.0.0", + "Microsoft.Net.Http.Headers": "3.1.0.0", + "Microsoft.VisualBasic.Core": "10.0.5.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "4.1.2.0", + "Microsoft.Win32.Registry": "4.1.3.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "4.2.2.0", + "System.Buffers": "4.0.2.0", + "System.Collections.Concurrent": "4.0.15.0", + "System.Collections": "4.1.2.0", + "System.Collections.Immutable": "1.2.5.0", + "System.Collections.NonGeneric": "4.1.2.0", + "System.Collections.Specialized": "4.1.2.0", + "System.ComponentModel.Annotations": "4.3.1.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "4.0.4.0", + "System.ComponentModel.EventBasedAsync": "4.1.2.0", + "System.ComponentModel.Primitives": "4.2.2.0", + "System.ComponentModel.TypeConverter": "4.2.2.0", + "System.Configuration": "4.0.0.0", + "System.Console": "4.1.2.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "4.2.2.0", + "System.Data.DataSetExtensions": "4.0.1.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "4.0.4.0", + "System.Diagnostics.Debug": "4.1.2.0", + "System.Diagnostics.DiagnosticSource": "4.0.5.0", + "System.Diagnostics.EventLog": "4.0.2.0", + "System.Diagnostics.FileVersionInfo": "4.0.4.0", + "System.Diagnostics.Process": "4.2.2.0", + "System.Diagnostics.StackTrace": "4.1.2.0", + "System.Diagnostics.TextWriterTraceListener": "4.1.2.0", + "System.Diagnostics.Tools": "4.1.2.0", + "System.Diagnostics.TraceSource": "4.1.2.0", + "System.Diagnostics.Tracing": "4.2.2.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "4.2.1.0", + "System.Dynamic.Runtime": "4.1.2.0", + "System.Globalization.Calendars": "4.1.2.0", + "System.Globalization": "4.1.2.0", + "System.Globalization.Extensions": "4.1.2.0", + "System.IO.Compression.Brotli": "4.2.2.0", + "System.IO.Compression": "4.2.2.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "4.0.5.0", + "System.IO": "4.2.2.0", + "System.IO.FileSystem": "4.1.2.0", + "System.IO.FileSystem.DriveInfo": "4.1.2.0", + "System.IO.FileSystem.Primitives": "4.1.2.0", + "System.IO.FileSystem.Watcher": "4.1.2.0", + "System.IO.IsolatedStorage": "4.1.2.0", + "System.IO.MemoryMappedFiles": "4.1.2.0", + "System.IO.Pipelines": "4.0.2.0", + "System.IO.Pipes": "4.1.2.0", + "System.IO.UnmanagedMemoryStream": "4.1.2.0", + "System.Linq": "4.2.2.0", + "System.Linq.Expressions": "4.2.2.0", + "System.Linq.Parallel": "4.0.4.0", + "System.Linq.Queryable": "4.0.4.0", + "System.Memory": "4.2.1.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "4.2.2.0", + "System.Net.HttpListener": "4.0.2.0", + "System.Net.Mail": "4.0.2.0", + "System.Net.NameResolution": "4.1.2.0", + "System.Net.NetworkInformation": "4.2.2.0", + "System.Net.Ping": "4.1.2.0", + "System.Net.Primitives": "4.1.2.0", + "System.Net.Requests": "4.1.2.0", + "System.Net.Security": "4.1.2.0", + "System.Net.ServicePoint": "4.0.2.0", + "System.Net.Sockets": "4.2.2.0", + "System.Net.WebClient": "4.0.2.0", + "System.Net.WebHeaderCollection": "4.1.2.0", + "System.Net.WebProxy": "4.0.2.0", + "System.Net.WebSockets.Client": "4.1.2.0", + "System.Net.WebSockets": "4.1.2.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "4.1.6.0", + "System.ObjectModel": "4.1.2.0", + "System.Reflection.DispatchProxy": "4.0.6.0", + "System.Reflection": "4.2.2.0", + "System.Reflection.Emit": "4.1.2.0", + "System.Reflection.Emit.ILGeneration": "4.1.1.0", + "System.Reflection.Emit.Lightweight": "4.1.1.0", + "System.Reflection.Extensions": "4.1.2.0", + "System.Reflection.Metadata": "1.4.5.0", + "System.Reflection.Primitives": "4.1.2.0", + "System.Reflection.TypeExtensions": "4.1.2.0", + "System.Resources.Reader": "4.1.2.0", + "System.Resources.ResourceManager": "4.1.2.0", + "System.Resources.Writer": "4.1.2.0", + "System.Runtime.CompilerServices.Unsafe": "4.0.6.0", + "System.Runtime.CompilerServices.VisualC": "4.1.2.0", + "System.Runtime": "4.2.2.0", + "System.Runtime.Extensions": "4.2.2.0", + "System.Runtime.Handles": "4.1.2.0", + "System.Runtime.InteropServices": "4.2.2.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0", + "System.Runtime.Intrinsics": "4.0.1.0", + "System.Runtime.Loader": "4.1.1.0", + "System.Runtime.Numerics": "4.1.2.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "4.0.4.0", + "System.Runtime.Serialization.Json": "4.0.5.0", + "System.Runtime.Serialization.Primitives": "4.2.2.0", + "System.Runtime.Serialization.Xml": "4.1.5.0", + "System.Security.AccessControl": "4.1.1.0", + "System.Security.Claims": "4.1.2.0", + "System.Security.Cryptography.Algorithms": "4.3.2.0", + "System.Security.Cryptography.Cng": "4.3.3.0", + "System.Security.Cryptography.Csp": "4.1.2.0", + "System.Security.Cryptography.Encoding": "4.1.2.0", + "System.Security.Cryptography.Primitives": "4.1.2.0", + "System.Security.Cryptography.X509Certificates": "4.2.2.0", + "System.Security.Cryptography.Xml": "4.0.3.0", + "System.Security": "4.0.0.0", + "System.Security.Permissions": "4.0.3.0", + "System.Security.Principal": "4.1.2.0", + "System.Security.Principal.Windows": "4.1.1.0", + "System.Security.SecureString": "4.1.2.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages": "4.1.3.0", + "System.Text.Encoding": "4.1.2.0", + "System.Text.Encoding.Extensions": "4.1.2.0", + "System.Text.Encodings.Web": "4.0.5.0", + "System.Text.Json": "4.0.1.0", + "System.Text.RegularExpressions": "4.2.2.0", + "System.Threading.Channels": "4.0.2.0", + "System.Threading": "4.1.2.0", + "System.Threading.Overlapped": "4.1.2.0", + "System.Threading.Tasks.Dataflow": "4.6.5.0", + "System.Threading.Tasks": "4.1.2.0", + "System.Threading.Tasks.Extensions": "4.3.1.0", + "System.Threading.Tasks.Parallel": "4.0.4.0", + "System.Threading.Thread": "4.1.2.0", + "System.Threading.ThreadPool": "4.1.2.0", + "System.Threading.Timer": "4.1.2.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "4.0.2.0", + "System.ValueTuple": "4.0.3.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "4.0.2.0", + "System.Windows": "4.0.0.0", + "System.Windows.Extensions": "4.0.1.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "4.2.2.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "4.1.2.0", + "System.Xml.XmlDocument": "4.1.2.0", + "System.Xml.XmlSerializer": "4.1.2.0", + "System.Xml.XPath": "4.1.2.0", + "System.Xml.XPath.XDocument": "4.1.2.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "SimpleApp.dll": {} + }, + "compile": { + "SimpleApp.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Metadata/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Metadata.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp/4.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Binder/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Json/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection/3.1.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": { + "compile": { + "Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/3.1.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Options.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Primitives/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/3.1.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/3.1.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/3.1.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/10.0.5.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/4.1.2.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/4.1.3.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/4.2.2.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/4.0.2.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/4.0.15.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections/4.1.2.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable/1.2.5.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/4.1.2.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/4.1.2.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations/4.3.1.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/4.0.4.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/4.1.2.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/4.2.2.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/4.2.2.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/4.1.2.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/4.2.2.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/4.0.1.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/4.0.4.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug/4.1.2.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/4.0.5.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog/4.0.2.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/4.0.4.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/4.2.2.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/4.1.2.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/4.1.2.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/4.1.2.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/4.2.2.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/4.2.1.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/4.1.2.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/4.1.2.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization/4.1.2.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/4.1.2.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/4.2.2.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/4.2.2.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/4.0.5.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO/4.2.2.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/4.1.2.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/4.1.2.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/4.1.2.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/4.1.2.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/4.1.2.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/4.1.2.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines/4.0.2.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/4.1.2.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/4.1.2.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq/4.2.2.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions/4.2.2.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/4.0.4.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable/4.0.4.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory/4.2.1.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/4.2.2.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/4.0.2.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/4.0.2.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/4.1.2.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/4.2.2.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/4.1.2.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/4.1.2.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/4.1.2.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/4.1.2.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/4.0.2.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/4.2.2.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/4.0.2.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/4.1.2.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/4.0.2.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/4.1.2.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/4.1.2.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/4.1.6.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel/4.1.2.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/4.0.6.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection/4.2.2.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit/4.1.2.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration/4.1.1.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight/4.1.1.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions/4.1.2.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata/1.4.5.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives/4.1.2.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions/4.1.2.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/4.1.2.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager/4.1.2.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/4.1.2.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe/4.0.6.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/4.1.2.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime/4.2.2.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions/4.2.2.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/4.1.2.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/4.2.2.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { + "compile": { + "System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/4.0.1.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader/4.1.1.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/4.1.2.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/4.0.4.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/4.0.5.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/4.2.2.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/4.1.5.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/4.1.1.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/4.1.2.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/4.3.2.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/4.3.3.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/4.2.2.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/4.0.3.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Permissions/4.0.3.0": { + "compile": { + "System.Security.Permissions.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/4.1.2.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/4.1.1.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/4.1.2.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages/4.1.3.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding/4.1.2.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/4.1.2.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/4.0.5.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.Json/4.0.1.0": { + "compile": { + "System.Text.Json.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/4.2.2.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/4.0.2.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading/4.1.2.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/4.1.2.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/4.6.5.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks/4.1.2.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions/4.3.1.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/4.0.4.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/4.1.2.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/4.1.2.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/4.1.2.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/4.0.2.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/4.0.3.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/4.0.2.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Windows.Extensions/4.0.1.0": { + "compile": { + "System.Windows.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/4.2.2.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/4.1.2.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/4.1.2.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/4.1.2.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/4.1.2.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/4.1.2.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "SimpleApp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Metadata/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Memory/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Binder/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Primitives/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/10.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/4.1.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/4.0.15.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable/1.2.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations/4.3.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/4.2.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory/4.2.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/4.1.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/4.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata/1.4.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe/4.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/4.1.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/4.3.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/4.3.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Permissions/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages/4.1.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Json/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/4.6.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions/4.3.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows.Extensions/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.dll b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.dll new file mode 100644 index 0000000..6242e85 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.dll differ diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.exe b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.exe new file mode 100644 index 0000000..36e3f19 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.exe differ diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.pdb b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.pdb new file mode 100644 index 0000000..3831bb1 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.pdb differ diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.runtimeconfig.dev.json b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.runtimeconfig.dev.json new file mode 100644 index 0000000..7892805 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\jeann\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\jeann\\.nuget\\packages", + "C:\\Microsoft\\Xamarin\\NuGet", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ] + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.runtimeconfig.json b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.runtimeconfig.json new file mode 100644 index 0000000..6be1e94 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/SimpleApp.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.AspNetCore.App", + "version": "3.1.0" + }, + "configProperties": { + "System.GC.Server": true + } + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/appsettings.Development.json b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/appsettings.Development.json new file mode 100644 index 0000000..8983e0f --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/appsettings.json b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/appsettings.json new file mode 100644 index 0000000..d9d9a9b --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/appsettings.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*" +} diff --git a/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/global.json b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/global.json new file mode 100644 index 0000000..c120c81 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/bin/Debug/netcoreapp3.1/global.json @@ -0,0 +1,5 @@ +{ + "sdk": { + "version": "3.1.301" + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/global.json b/06 - Testing/Testing/SimpleApp/global.json index f1c2b2b..c120c81 100644 --- a/06 - Testing/Testing/SimpleApp/global.json +++ b/06 - Testing/Testing/SimpleApp/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "3.1.101" + "version": "3.1.301" } } \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs new file mode 100644 index 0000000..0f7145f --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs @@ -0,0 +1,132 @@ +#pragma checksum "D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6a277b17e4d2514b8af4a8e28e0c4e4962296181" +// +#pragma warning disable 1591 +[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Index), @"mvc.1.0.view", @"/Views/Home/Index.cshtml")] +namespace AspNetCore +{ + #line hidden + using System; + using System.Collections.Generic; + using System.Linq; + using System.Threading.Tasks; + using Microsoft.AspNetCore.Mvc; + using Microsoft.AspNetCore.Mvc.Rendering; + using Microsoft.AspNetCore.Mvc.ViewFeatures; +#nullable restore +#line 1 "D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\Views\Home\Index.cshtml" +using SimpleApp.Models; + +#line default +#line hidden +#nullable disable + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"6a277b17e4d2514b8af4a8e28e0c4e4962296181", @"/Views/Home/Index.cshtml")] + public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage> + { + #line hidden + #pragma warning disable 0649 + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext; + #pragma warning restore 0649 + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner(); + #pragma warning disable 0169 + private string __tagHelperStringValueBuffer; + #pragma warning restore 0169 + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null; + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager + { + get + { + if (__backed__tagHelperScopeManager == null) + { + __backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope); + } + return __backed__tagHelperScopeManager; + } + } + private global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.HeadTagHelper __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_HeadTagHelper; + private global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.BodyTagHelper __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper; + #pragma warning disable 1998 + public async override global::System.Threading.Tasks.Task ExecuteAsync() + { +#nullable restore +#line 3 "D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\Views\Home\Index.cshtml" + Layout = null; + +#line default +#line hidden +#nullable disable + WriteLiteral("\r\n\r\n\r\n"); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6a277b17e4d2514b8af4a8e28e0c4e49622961813110", async() => { + WriteLiteral("\r\n \r\n Simple App\r\n"); + } + ); + __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_HeadTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_HeadTagHelper); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + WriteLiteral("\r\n"); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6a277b17e4d2514b8af4a8e28e0c4e49622961814174", async() => { + WriteLiteral("\r\n
    \r\n"); +#nullable restore +#line 13 "D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\Views\Home\Index.cshtml" + foreach (Product p in Model) { + +#line default +#line hidden +#nullable disable + WriteLiteral("
  • Name: "); +#nullable restore +#line 14 "D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\Views\Home\Index.cshtml" + Write(p.Name); + +#line default +#line hidden +#nullable disable + WriteLiteral(", Price: "); +#nullable restore +#line 14 "D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\Views\Home\Index.cshtml" + Write(p.Price); + +#line default +#line hidden +#nullable disable + WriteLiteral("
  • \r\n"); +#nullable restore +#line 15 "D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\Views\Home\Index.cshtml" + } + +#line default +#line hidden +#nullable disable + WriteLiteral("
\r\n"); + } + ); + __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + WriteLiteral("\r\n\r\n"); + } + #pragma warning restore 1998 + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper> Html { get; private set; } + } +} +#pragma warning restore 1591 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.AssemblyInfo.cs b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.AssemblyInfo.cs new file mode 100644 index 0000000..08cacd1 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.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("SimpleApp")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("SimpleApp")] +[assembly: System.Reflection.AssemblyTitleAttribute("SimpleApp")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Gerado pela classe WriteCodeFragment do MSBuild. + diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.AssemblyInfoInputs.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7d47df2 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5aa94da13705ace974446996a00468bd93a326a0 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.MvcApplicationPartsAssemblyInfo.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorAssemblyInfo.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorAssemblyInfo.cache new file mode 100644 index 0000000..a26e2c5 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +2778b24a19902204fbcefdb2727afd7068a0467b diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorAssemblyInfo.cs b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorAssemblyInfo.cs new file mode 100644 index 0000000..19e24e7 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorAssemblyInfo.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.RelatedAssemblyAttribute("SimpleApp.Views")] + +// Gerado pela classe WriteCodeFragment do MSBuild. + diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorCoreGenerate.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorCoreGenerate.cache new file mode 100644 index 0000000..8bc40b3 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorCoreGenerate.cache @@ -0,0 +1 @@ +7431dbf39fc7cb8b7f33369e4e5621e21a3c4386 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorTargetAssemblyInfo.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorTargetAssemblyInfo.cache new file mode 100644 index 0000000..b4f2b2c --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorTargetAssemblyInfo.cache @@ -0,0 +1 @@ +f3ec9f9076ae39197e4a3e56d83e570051f3c91d diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorTargetAssemblyInfo.cs b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorTargetAssemblyInfo.cs new file mode 100644 index 0000000..d5d8ddc --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.RazorTargetAssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 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.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.CompiledRazorAssemblyApplicationPartFac" + + "tory, Microsoft.AspNetCore.Mvc.Razor")] +[assembly: System.Reflection.AssemblyCompanyAttribute("SimpleApp")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyProductAttribute("SimpleApp")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyTitleAttribute("SimpleApp.Views")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Gerado pela classe WriteCodeFragment do MSBuild. + diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.TagHelpers.input.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.TagHelpers.input.cache new file mode 100644 index 0000000..e69de29 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.TagHelpers.output.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.TagHelpers.output.cache new file mode 100644 index 0000000..dad89fc --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.TagHelpers.output.cache @@ -0,0 +1 @@ +[{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.BodyTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.Razor","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"body","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.BodyTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.HeadTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.Razor","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"head","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.HeadTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.Razor","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"itemid","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"href","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"applet","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"archive","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"area","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"href","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"audio","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"base","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"href","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"blockquote","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"cite","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"formaction","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"del","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"cite","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"embed","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"form","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"action","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"html","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"manifest","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"iframe","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"img","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"img","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"srcset","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"formaction","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"ins","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"cite","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"href","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"menuitem","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"icon","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"object","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"archive","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"object","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"data","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"q","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"cite","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"source","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"source","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"srcset","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"track","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"video","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"poster","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"video","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-action","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-all-route-data","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-area","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-controller","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fragment","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-host","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-page","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-page-handler","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-protocol","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-route","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-route-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Action"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Area"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Controller"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Fragment"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-host","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Host"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Page"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"PageHandler"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-protocol","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Protocol"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Route"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IsEnum":false,"IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteValues"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"cache","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"priority","TypeName":"Microsoft.Extensions.Caching.Memory.CacheItemPriority?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Priority"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"enabled","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Enabled"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-after","TypeName":"System.TimeSpan?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresAfter"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-on","TypeName":"System.DateTimeOffset?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresOn"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-sliding","TypeName":"System.TimeSpan?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresSliding"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryBy"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-cookie","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByCookie"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-culture","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByCulture"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-header","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByHeader"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-query","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByQuery"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByRoute"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-user","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByUser"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"component","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"type","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ComponentType"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"params","TypeName":"System.Collections.Generic.IDictionary","IsEnum":false,"IndexerNamePrefix":"param-","IndexerTypeName":"System.Object","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Parameters"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"render-mode","TypeName":"Microsoft.AspNetCore.Mvc.Rendering.RenderMode","IsEnum":true,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RenderMode"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"distributed-cache","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"name","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"enabled","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Enabled"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-after","TypeName":"System.TimeSpan?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresAfter"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-on","TypeName":"System.DateTimeOffset?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresOn"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-sliding","TypeName":"System.TimeSpan?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresSliding"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryBy"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-cookie","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByCookie"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-culture","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByCulture"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-header","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByHeader"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-query","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByQuery"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByRoute"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-user","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByUser"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"environment","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Exclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Include"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"names","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Names"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-action","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-all-route-data","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-area","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-controller","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fragment","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-page","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-page-handler","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-route","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-route-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-action","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-all-route-data","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-area","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-controller","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-fragment","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-page","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-page-handler","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-route","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-route-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-action","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-all-route-data","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-area","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-controller","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-fragment","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-page","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-page-handler","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-route","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-route-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Action"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Area"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Controller"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Fragment"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Page"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"PageHandler"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Route"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IsEnum":false,"IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteValues"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"form","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Action"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-antiforgery","TypeName":"System.Boolean?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Antiforgery"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Area"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Controller"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Fragment"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"method","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Method"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Page"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"PageHandler"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Route"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IsEnum":false,"IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteValues"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"img","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-append-version","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}},{"Name":"src","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AppendVersion"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"src","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Src"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-format","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Format"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"type","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"InputTypeName"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"label","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-append-version","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-href","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-href-exclude","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-href-include","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-class","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-property","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-href-exclude","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-href-include","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AppendVersion"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-href","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackHref"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-href-exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackHrefExclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-href-include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackHrefInclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-test-class","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackTestClass"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-test-property","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackTestProperty"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-test-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackTestValue"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"href","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Href"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-href-exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"HrefExclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-href-include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"HrefInclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-suppress-fallback-integrity","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"SuppressFallbackIntegrity"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"option","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"partial","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"name","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"fallback-name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackName"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"model","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Model"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"optional","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Optional"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"view-data","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary","IsEnum":false,"IndexerNamePrefix":"view-data-","IndexerTypeName":"System.Object","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ViewData"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"form","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-append-version","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fallback-src","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fallback-src-exclude","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fallback-src-include","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fallback-test","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-src-exclude","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-src-include","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AppendVersion"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-src","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackSrc"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-src-exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackSrcExclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-src-include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackSrcInclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-test","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackTestExpression"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"src","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Src"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-src-exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"SrcExclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-src-include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"SrcInclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-suppress-fallback-integrity","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"SuppressFallbackIntegrity"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"select","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"select","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-items","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-items","TypeName":"System.Collections.Generic.IEnumerable","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Items"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"textarea","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"span","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-validation-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-validation-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"div","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-validation-summary","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-validation-summary","TypeName":"Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary","IsEnum":true,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValidationSummary"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.BodyTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.Razor","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"body","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.BodyTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.HeadTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.Razor","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"head","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.HeadTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.Razor","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"itemid","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"href","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"applet","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"archive","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"area","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"href","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"audio","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"base","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"href","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"blockquote","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"cite","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"formaction","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"del","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"cite","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"embed","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"form","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"action","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"html","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"manifest","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"iframe","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"img","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"img","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"srcset","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"formaction","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"ins","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"cite","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"href","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"menuitem","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"icon","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"object","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"archive","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"object","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"data","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"q","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"cite","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"source","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"source","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"srcset","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"track","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"video","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"poster","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"video","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"src","NameComparison":0,"Value":"~/","ValueComparison":2,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-action","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-all-route-data","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-area","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-controller","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fragment","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-host","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-page","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-page-handler","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-protocol","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-route","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"a","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-route-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Action"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Area"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Controller"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Fragment"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-host","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Host"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Page"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"PageHandler"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-protocol","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Protocol"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Route"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IsEnum":false,"IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteValues"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"cache","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"priority","TypeName":"Microsoft.Extensions.Caching.Memory.CacheItemPriority?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Priority"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"enabled","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Enabled"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-after","TypeName":"System.TimeSpan?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresAfter"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-on","TypeName":"System.DateTimeOffset?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresOn"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-sliding","TypeName":"System.TimeSpan?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresSliding"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryBy"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-cookie","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByCookie"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-culture","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByCulture"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-header","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByHeader"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-query","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByQuery"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByRoute"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-user","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByUser"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"component","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"type","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ComponentType"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"params","TypeName":"System.Collections.Generic.IDictionary","IsEnum":false,"IndexerNamePrefix":"param-","IndexerTypeName":"System.Object","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Parameters"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"render-mode","TypeName":"Microsoft.AspNetCore.Mvc.Rendering.RenderMode","IsEnum":true,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RenderMode"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"distributed-cache","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"name","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"enabled","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Enabled"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-after","TypeName":"System.TimeSpan?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresAfter"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-on","TypeName":"System.DateTimeOffset?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresOn"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"expires-sliding","TypeName":"System.TimeSpan?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ExpiresSliding"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryBy"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-cookie","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByCookie"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-culture","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByCulture"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-header","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByHeader"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-query","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByQuery"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByRoute"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"vary-by-user","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"VaryByUser"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"environment","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Exclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Include"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"names","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Names"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-action","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-all-route-data","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-area","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-controller","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fragment","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-page","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-page-handler","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-route","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"button","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-route-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-action","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-all-route-data","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-area","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-controller","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-fragment","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-page","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-page-handler","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-route","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"image","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-route-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-action","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-all-route-data","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-area","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-controller","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-fragment","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-page","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-page-handler","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-route","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"type","NameComparison":0,"Value":"submit","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"asp-route-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Action"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Area"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Controller"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Fragment"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Page"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"PageHandler"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Route"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IsEnum":false,"IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteValues"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"form","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-action","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Action"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-antiforgery","TypeName":"System.Boolean?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Antiforgery"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-area","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Area"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-controller","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Controller"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fragment","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Fragment"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"method","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Method"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Page"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-page-handler","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"PageHandler"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-route","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Route"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-all-route-data","TypeName":"System.Collections.Generic.IDictionary","IsEnum":false,"IndexerNamePrefix":"asp-route-","IndexerTypeName":"System.String","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteValues"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"img","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-append-version","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}},{"Name":"src","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AppendVersion"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"src","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Src"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-format","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Format"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"type","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"InputTypeName"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"label","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-append-version","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-href","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-href-exclude","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-href-include","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-class","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-property","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-fallback-test-value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-href-exclude","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"link","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"asp-href-include","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AppendVersion"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-href","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackHref"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-href-exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackHrefExclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-href-include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackHrefInclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-test-class","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackTestClass"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-test-property","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackTestProperty"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-test-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackTestValue"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"href","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Href"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-href-exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"HrefExclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-href-include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"HrefInclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-suppress-fallback-integrity","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"SuppressFallbackIntegrity"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"option","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"partial","ParentTag":null,"TagStructure":2,"Attributes":[{"Name":"name","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"fallback-name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackName"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"model","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Model"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"optional","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Optional"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"view-data","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary","IsEnum":false,"IndexerNamePrefix":"view-data-","IndexerTypeName":"System.Object","Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ViewData"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"form","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-append-version","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fallback-src","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fallback-src-exclude","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fallback-src-include","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-fallback-test","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-src-exclude","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"script","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-src-include","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-append-version","TypeName":"System.Boolean?","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AppendVersion"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-src","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackSrc"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-src-exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackSrcExclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-src-include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackSrcInclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-fallback-test","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"FallbackTestExpression"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"src","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Src"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-src-exclude","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"SrcExclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-src-include","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"SrcInclude"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-suppress-fallback-integrity","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"SuppressFallbackIntegrity"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"select","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]},{"TagName":"select","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-items","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"asp-items","TypeName":"System.Collections.Generic.IEnumerable","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Items"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"textarea","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]},{"Kind":"ITagHelper","Name":"name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"span","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-validation-for","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-validation-for","TypeName":"Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper"}},{"Kind":"ITagHelper","Name":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper","AssemblyName":"Microsoft.AspNetCore.Mvc.TagHelpers","Documentation":null,"TagOutputHint":null,"CaseSensitive":false,"TagMatchingRules":[{"TagName":"div","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"asp-validation-summary","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"ITagHelper","Name":"asp-validation-summary","TypeName":"Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary","IsEnum":true,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValidationSummary"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"ITagHelper","Common.TypeName":"Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"AuthorizeRouteView","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Authorizing","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"NotAuthorized","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"DefaultLayout"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteData"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for all child content expressions.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Authorizing","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"NotAuthorized","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"DefaultLayout"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteData"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for all child content expressions.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"AuthorizeRouteView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"AuthorizeRouteView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'NotAuthorized' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'NotAuthorized' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"AuthorizeView","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Policy","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Policy"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Roles","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Roles"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Authorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Authorized","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Authorizing","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"NotAuthorized","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Resource"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for all child content expressions.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"Policy","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Policy"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Roles","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Roles"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Authorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Authorized","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Authorizing","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Authorizing","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"NotAuthorized","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"NotAuthorized","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Resource","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Resource"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for all child content expressions.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorized","ParentTag":"AuthorizeView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'Authorized' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'Authorized' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"AuthorizeView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Authorizing","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"AuthorizeView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'ChildContent' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'ChildContent' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"AuthorizeView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'NotAuthorized' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotAuthorized","ParentTag":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'NotAuthorized' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"CascadingAuthenticationState","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"CascadingAuthenticationState","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Authorization","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.CascadingValue","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"CascadingValue","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"IsFixed","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"IsFixed"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.CascadingValue","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.CascadingValue","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"IsFixed","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"IsFixed"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Name","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Name"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"CascadingValue","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.CascadingValue","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.CascadingValue.ChildContent","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.LayoutView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"LayoutView","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Layout","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Layout"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.LayoutView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.LayoutView","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Layout","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Layout"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"LayoutView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.LayoutView","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.LayoutView.ChildContent","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.RouteView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"RouteView","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"DefaultLayout"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteData"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.RouteView"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.RouteView","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.RouteView","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"DefaultLayout","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"DefaultLayout"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"RouteData","TypeName":"Microsoft.AspNetCore.Components.RouteData","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"RouteData"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.RouteView","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.Router","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Router","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAssemblies","TypeName":"System.Collections.Generic.IEnumerable","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAssemblies"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AppAssembly","TypeName":"System.Reflection.Assembly","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AppAssembly"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Found","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Found","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"NotFound","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"NotFound","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for all child content expressions.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.Router","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Routing.Router","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAssemblies","TypeName":"System.Collections.Generic.IEnumerable","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAssemblies"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AppAssembly","TypeName":"System.Reflection.Assembly","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AppAssembly"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Found","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Found","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"NotFound","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"NotFound","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for all child content expressions.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Found","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Found","ParentTag":"Router","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'Found' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Found","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.Found","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Found","ParentTag":"Microsoft.AspNetCore.Components.Routing.Router","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'Found' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.Found","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotFound","ParentTag":"Router","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"NotFound","ParentTag":"Microsoft.AspNetCore.Components.Routing.Router","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.Router.NotFound","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","AssemblyName":"Microsoft.AspNetCore.Components.Forms","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"DataAnnotationsValidator","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","AssemblyName":"Microsoft.AspNetCore.Components.Forms","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.EditForm","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"EditForm","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"EditContext","TypeName":"Microsoft.AspNetCore.Components.Forms.EditContext","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"EditContext"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Model"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"OnInvalidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"OnInvalidSubmit","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"OnSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"OnSubmit","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"OnValidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"OnValidSubmit","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for all child content expressions.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.EditForm","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.EditForm","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"EditContext","TypeName":"Microsoft.AspNetCore.Components.Forms.EditContext","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"EditContext"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Model"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"OnInvalidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"OnInvalidSubmit","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"OnSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"OnSubmit","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"OnValidSubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"OnValidSubmit","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for all child content expressions.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"EditForm","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'ChildContent' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Forms.EditForm","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.ChildContent","Name":"Context","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the parameter name for the 'ChildContent' child content expression.","Diagnostics":[],"Metadata":{"Components.ChildContentParameterName":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputCheckbox","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"System.Boolean","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputDate","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ParsingErrorMessage"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputDate","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ParsingErrorMessage"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputNumber","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ParsingErrorMessage"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputNumber","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ParsingErrorMessage","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ParsingErrorMessage"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputSelect","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputSelect","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"TValue","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True","Components.GenericTyped":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"InputSelect","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Forms.InputSelect","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputText","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputText","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputTextArea","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Value"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueChanged","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueChanged","Components.EventCallback":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ValueExpression","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ValueExpression"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ValidationMessage","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"For","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","Components.GenericTyped":"True"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"TValue","TypeName":"System.Type","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"TValue","Components.TypeParameter":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"For","TypeName":"System.Linq.Expressions.Expression>","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"For","Components.GenericTyped":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationMessage","Components.GenericTyped":"True","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ValidationSummary","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Model"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Model","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Model"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.ValidationSummary","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.NavLink","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"NavLink","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ActiveClass","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ActiveClass"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Match","TypeName":"Microsoft.AspNetCore.Components.Routing.NavLinkMatch","IsEnum":true,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Match"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink"}},{"Kind":"Components.Component","Name":"Microsoft.AspNetCore.Components.Routing.NavLink","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Routing.NavLink","ParentTag":null,"TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Component","Name":"ActiveClass","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ActiveClass"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"AdditionalAttributes","TypeName":"System.Collections.Generic.IReadOnlyDictionary","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"AdditionalAttributes"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"ChildContent","TypeName":"Microsoft.AspNetCore.Components.RenderFragment","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"ChildContent","Components.ChildContent":"True"},"BoundAttributeParameters":[]},{"Kind":"Components.Component","Name":"Match","TypeName":"Microsoft.AspNetCore.Components.Routing.NavLinkMatch","IsEnum":true,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":null,"Diagnostics":[],"Metadata":{"Common.PropertyName":"Match"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.IComponent","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"NavLink","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","Components.IsSpecialKind":"Components.ChildContent"}},{"Kind":"Components.ChildContent","Name":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":null,"TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"ChildContent","ParentTag":"Microsoft.AspNetCore.Components.Routing.NavLink","TagStructure":0,"Attributes":[],"Diagnostics":[]}],"BoundAttributes":[],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Common.TypeName":"Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent","Components.IsSpecialKind":"Components.ChildContent","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.EventHandler","Name":"onabort","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onabort","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onabort:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onabort:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onabort","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onabort"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onabort' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onabort' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onactivate","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onactivate:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onactivate:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onactivate"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onactivate' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onactivate' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onbeforeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforeactivate","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforeactivate:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforeactivate:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforeactivate"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforeactivate' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onbeforeactivate' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onbeforecopy","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforecopy","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforecopy:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforecopy:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforecopy","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforecopy"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecopy' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onbeforecopy' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onbeforecut","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforecut","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforecut:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforecut:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforecut","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforecut"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecut' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onbeforecut' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onbeforedeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforedeactivate","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforedeactivate:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforedeactivate:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforedeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforedeactivate"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforedeactivate' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onbeforedeactivate' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onbeforepaste","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforepaste","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforepaste:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onbeforepaste:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onbeforepaste","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onbeforepaste"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforepaste' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onbeforepaste' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onblur","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onblur","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onblur:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onblur:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onblur","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onblur"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onblur' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onblur' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"oncanplay","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncanplay","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncanplay:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncanplay:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncanplay","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncanplay"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplay' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@oncanplay' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"oncanplaythrough","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncanplaythrough","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncanplaythrough:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncanplaythrough:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncanplaythrough","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncanplaythrough"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplaythrough' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@oncanplaythrough' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onchange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onchange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onchange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onchange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onchange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onchange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.ChangeEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onclick","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onclick","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onclick:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onclick:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onclick","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onclick"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onclick' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onclick' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"oncontextmenu","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncontextmenu","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncontextmenu:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncontextmenu:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncontextmenu","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncontextmenu"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncontextmenu' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@oncontextmenu' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"oncopy","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncopy","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncopy:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncopy:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncopy","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncopy"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncopy' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@oncopy' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"oncuechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncuechange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncuechange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncuechange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncuechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncuechange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncuechange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@oncuechange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"oncut","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncut","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncut:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oncut:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oncut","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oncut"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncut' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@oncut' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondblclick","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondblclick","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondblclick:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondblclick:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondblclick","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondblclick"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondblclick' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondblclick' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondeactivate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondeactivate","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondeactivate:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondeactivate:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondeactivate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondeactivate"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondeactivate' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondeactivate' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondrag","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondrag","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondrag:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondrag:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondrag","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondrag"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrag' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondrag' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondragend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragend","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragend:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragend:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragend"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragend' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondragend' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondragenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragenter","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragenter:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragenter:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragenter"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragenter' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondragenter' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondragleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragleave","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragleave:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragleave:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragleave"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragleave' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondragleave' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondragover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragover","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragover:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragover:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragover"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragover' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondragover' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondragstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragstart","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragstart:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondragstart:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondragstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondragstart"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragstart' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondragstart' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondrop","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondrop","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondrop:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondrop:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondrop","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondrop"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrop' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondrop' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.DragEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ondurationchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondurationchange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondurationchange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ondurationchange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ondurationchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ondurationchange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondurationchange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ondurationchange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onemptied","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onemptied","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onemptied:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onemptied:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onemptied","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onemptied"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onemptied' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onemptied' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onended","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onended","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onended:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onended:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onended","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onended"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onended' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onended' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onerror","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onerror:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onerror:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onerror"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onerror' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onerror' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ErrorEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onfocus","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocus","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocus:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocus:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocus","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocus"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocus' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onfocus' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onfocusin","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocusin","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocusin:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocusin:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocusin","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocusin"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusin' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onfocusin' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onfocusout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocusout","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocusout:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfocusout:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfocusout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfocusout"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusout' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onfocusout' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.FocusEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onfullscreenchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfullscreenchange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfullscreenchange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfullscreenchange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfullscreenchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfullscreenchange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenchange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onfullscreenchange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onfullscreenerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfullscreenerror","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfullscreenerror:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onfullscreenerror:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onfullscreenerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onfullscreenerror"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenerror' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onfullscreenerror' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ongotpointercapture","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ongotpointercapture","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ongotpointercapture:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ongotpointercapture:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ongotpointercapture","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ongotpointercapture"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ongotpointercapture' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ongotpointercapture' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"oninput","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oninput","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oninput:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oninput:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oninput","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oninput"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninput' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@oninput' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.ChangeEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"oninvalid","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oninvalid","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oninvalid:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@oninvalid:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@oninvalid","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"oninvalid"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninvalid' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@oninvalid' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onkeydown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeydown","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeydown:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeydown:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeydown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeydown"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeydown' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onkeydown' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onkeypress","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeypress","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeypress:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeypress:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeypress","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeypress"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeypress' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onkeypress' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onkeyup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeyup","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeyup:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onkeyup:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onkeyup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onkeyup"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeyup' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onkeyup' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.KeyboardEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onload","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onload","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onload:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onload:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onload","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onload"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onload' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onload' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onloadeddata","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadeddata","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadeddata:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadeddata:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadeddata","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadeddata"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadeddata' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onloadeddata' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onloadedmetadata","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadedmetadata","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadedmetadata:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadedmetadata:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadedmetadata","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadedmetadata"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadedmetadata' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onloadedmetadata' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onloadend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadend","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadend:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadend:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadend"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadend' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onloadend' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onloadstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadstart","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadstart:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onloadstart:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onloadstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onloadstart"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadstart' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onloadstart' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onlostpointercapture","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onlostpointercapture","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onlostpointercapture:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onlostpointercapture:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onlostpointercapture","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onlostpointercapture"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onlostpointercapture' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onlostpointercapture' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onmousedown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousedown","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousedown:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousedown:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousedown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousedown"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousedown' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onmousedown' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onmousemove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousemove","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousemove:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousemove:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousemove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousemove"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousemove' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onmousemove' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onmouseout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseout","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseout:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseout:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseout"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseout' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onmouseout' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onmouseover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseover","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseover:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseover:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseover"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseover' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onmouseover' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onmouseup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseup","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseup:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmouseup:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmouseup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmouseup"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseup' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onmouseup' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.MouseEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onmousewheel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousewheel","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousewheel:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onmousewheel:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onmousewheel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onmousewheel"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousewheel' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onmousewheel' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.WheelEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpaste","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpaste","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpaste:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpaste:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpaste","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpaste"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpaste' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpaste' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ClipboardEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpause","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpause","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpause:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpause:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpause","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpause"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpause' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpause' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onplay","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onplay","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onplay:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onplay:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onplay","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onplay"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplay' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onplay' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onplaying","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onplaying","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onplaying:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onplaying:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onplaying","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onplaying"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplaying' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onplaying' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointercancel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointercancel","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointercancel:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointercancel:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointercancel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointercancel"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointercancel' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointercancel' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointerdown","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerdown","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerdown:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerdown:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerdown","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerdown"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerdown' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointerdown' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointerenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerenter","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerenter:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerenter:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerenter"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerenter' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointerenter' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointerleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerleave","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerleave:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerleave:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerleave"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerleave' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointerleave' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointerlockchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerlockchange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerlockchange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerlockchange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerlockchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerlockchange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockchange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointerlockchange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointerlockerror","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerlockerror","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerlockerror:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerlockerror:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerlockerror","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerlockerror"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockerror' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointerlockerror' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointermove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointermove","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointermove:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointermove:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointermove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointermove"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointermove' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointermove' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointerout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerout","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerout:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerout:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerout"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerout' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointerout' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointerover","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerover","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerover:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerover:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerover","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerover"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerover' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointerover' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onpointerup","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerup","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerup:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onpointerup:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onpointerup","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onpointerup"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerup' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onpointerup' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.PointerEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onprogress","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onprogress","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onprogress:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onprogress:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onprogress","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onprogress"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onprogress' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onprogress' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onratechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onratechange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onratechange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onratechange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onratechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onratechange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onratechange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onratechange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onreadystatechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onreadystatechange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onreadystatechange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onreadystatechange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onreadystatechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onreadystatechange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreadystatechange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onreadystatechange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onreset","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onreset","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onreset:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onreset:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onreset","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onreset"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreset' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onreset' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onscroll","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onscroll","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onscroll:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onscroll:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onscroll","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onscroll"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onscroll' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onscroll' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onseeked","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onseeked","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onseeked:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onseeked:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onseeked","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onseeked"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeked' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onseeked' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onseeking","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onseeking","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onseeking:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onseeking:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onseeking","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onseeking"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeking' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onseeking' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onselect","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselect","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselect:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselect:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselect","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselect"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselect' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onselect' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onselectionchange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselectionchange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselectionchange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselectionchange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselectionchange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselectionchange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectionchange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onselectionchange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onselectstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselectstart","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselectstart:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onselectstart:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onselectstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onselectstart"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectstart' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onselectstart' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onstalled","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onstalled","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onstalled:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onstalled:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onstalled","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onstalled"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstalled' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onstalled' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onstop","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onstop","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onstop:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onstop:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onstop","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onstop"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstop' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onstop' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onsubmit","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onsubmit","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onsubmit:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onsubmit:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onsubmit","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onsubmit"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsubmit' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onsubmit' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onsuspend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onsuspend","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onsuspend:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onsuspend:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onsuspend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onsuspend"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsuspend' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onsuspend' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ontimeout","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontimeout","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontimeout:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontimeout:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontimeout","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontimeout"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeout' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ontimeout' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.ProgressEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ontimeupdate","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontimeupdate","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontimeupdate:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontimeupdate:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontimeupdate","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontimeupdate"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeupdate' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ontimeupdate' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ontouchcancel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchcancel","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchcancel:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchcancel:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchcancel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchcancel"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchcancel' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ontouchcancel' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ontouchend","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchend","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchend:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchend:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchend","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchend"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchend' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ontouchend' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ontouchenter","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchenter","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchenter:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchenter:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchenter","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchenter"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchenter' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ontouchenter' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ontouchleave","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchleave","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchleave:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchleave:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchleave","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchleave"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchleave' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ontouchleave' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ontouchmove","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchmove","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchmove:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchmove:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchmove","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchmove"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchmove' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ontouchmove' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"ontouchstart","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchstart","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchstart:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ontouchstart:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@ontouchstart","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"ontouchstart"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchstart' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@ontouchstart' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.TouchEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onvolumechange","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onvolumechange","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onvolumechange:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onvolumechange:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onvolumechange","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onvolumechange"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onvolumechange' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onvolumechange' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onwaiting","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onwaiting","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onwaiting:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onwaiting:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onwaiting","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onwaiting"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwaiting' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onwaiting' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"System.EventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.EventHandler","Name":"onwheel","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onwheel","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onwheel:preventDefault","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]},{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@onwheel:stopPropagation","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.EventHandler","Name":"@onwheel","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.","Diagnostics":[],"Metadata":{"Components.IsWeaklyTyped":"True","Common.DirectiveAttribute":"True","Common.PropertyName":"onwheel"},"BoundAttributeParameters":[{"Kind":"Components.EventHandler","Name":"preventDefault","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwheel' event.","Diagnostics":[],"Metadata":{"Common.PropertyName":"PreventDefault"}},{"Kind":"Components.EventHandler","Name":"stopPropagation","TypeName":"System.Boolean","IsEnum":false,"Documentation":"Specifies whether to prevent further propagation of the '@onwheel' event in the capturing and bubbling phases.","Diagnostics":[],"Metadata":{"Common.PropertyName":"StopPropagation"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.EventHandler","Components.EventHandler.EventArgs":"Microsoft.AspNetCore.Components.Web.WheelEventArgs","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Web.EventHandlers"}},{"Kind":"Components.Splat","Name":"Attributes","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Merges a collection of attributes into the current element or component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@attributes","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Splat","Name":"@attributes","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Merges a collection of attributes into the current element or component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Attributes","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Splat","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Attributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-","NameComparison":1,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-...","TypeName":"System.Collections.Generic.Dictionary","IsEnum":false,"IndexerNamePrefix":"@bind-","IndexerTypeName":"System.Object","Documentation":"Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the corresponding bind attribute. For example: @bind-value:format=\"...\" will apply a format string to the value specified in @bind-value=\"...\". The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind-...' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.Fallback":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Bind"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"select","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"False","Components.Bind.Format":null,"Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"textarea","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"False","Components.Bind.Format":null,"Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"checkbox","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_checked"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_checked"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-checked","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_checked"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"checked","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"False","Components.Bind.Format":null,"Components.Bind.TypeAttribute":"checkbox","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"date","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind-value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":"yyyy-MM-dd","Components.Bind.TypeAttribute":"date","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"date","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":"yyyy-MM-dd","Components.Bind.TypeAttribute":"date","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"datetime-local","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind-value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":"yyyy-MM-ddTHH:mm:ss","Components.Bind.TypeAttribute":"datetime-local","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"datetime-local","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":"yyyy-MM-ddTHH:mm:ss","Components.Bind.TypeAttribute":"datetime-local","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"month","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind-value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":"yyyy-MM","Components.Bind.TypeAttribute":"month","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"month","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":"yyyy-MM","Components.Bind.TypeAttribute":"month","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"number","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind-value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":null,"Components.Bind.TypeAttribute":"number","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"number","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":null,"Components.Bind.TypeAttribute":"number","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"text","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"False","Components.Bind.Format":null,"Components.Bind.TypeAttribute":"text","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"time","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind-value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":"HH:mm:ss","Components.Bind.TypeAttribute":"time","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"type","NameComparison":0,"Value":"time","ValueComparison":1,"Diagnostics":[],"Metadata":{}},{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"True","Components.Bind.Format":"HH:mm:ss","Components.Bind.TypeAttribute":"time","Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind_value","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-value","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind_value"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"False","Components.Bind.Format":null,"Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Bind","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"input","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Bind"},"BoundAttributeParameters":[{"Kind":"Components.Bind","Name":"format","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"}},{"Kind":"Components.Bind","Name":"event","TypeName":"System.String","IsEnum":false,"Documentation":"Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Event_value"}},{"Kind":"Components.Bind","Name":"culture","TypeName":"System.Globalization.CultureInfo","IsEnum":false,"Documentation":"Specifies the culture to use for conversions.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Culture"}}]},{"Kind":"Components.Bind","Name":"format-value","TypeName":"System.String","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Format_value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Common.ClassifyAttributesOnly":"True","Components.Bind.ValueAttribute":"value","Components.Bind.ChangeAttribute":"onchange","Components.Bind.IsInvariantCulture":"False","Components.Bind.Format":null,"Common.TypeName":"Microsoft.AspNetCore.Components.Web.BindAttributes"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputCheckbox","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputCheckbox","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputDate","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputDate","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputDate","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputDate","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputNumber","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputNumber","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputNumber","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputNumber","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputSelect","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputSelect","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputSelect","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputSelect","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputText","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputText","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputText","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputText","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"InputTextArea","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea"}},{"Kind":"Components.Bind","Name":"Microsoft.AspNetCore.Components.Forms.InputTextArea","AssemblyName":"Microsoft.AspNetCore.Components.Web","Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@bind-Value","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Bind","Name":"@bind-Value","TypeName":"Microsoft.AspNetCore.Components.EventCallback","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.","Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True","Common.PropertyName":"Value"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Bind","Components.Bind.ValueAttribute":"Value","Components.Bind.ChangeAttribute":"ValueChanged","Components.Bind.ExpressionAttribute":"ValueExpression","Common.TypeName":"Microsoft.AspNetCore.Components.Forms.InputTextArea","Components.NameMatch":"Components.FullyQualifiedNameMatch"}},{"Kind":"Components.Ref","Name":"Ref","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Populates the specified field or property with a reference to the element or component.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@ref","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Ref","Name":"@ref","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Populates the specified field or property with a reference to the element or component.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Ref","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Ref","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Ref"}},{"Kind":"Components.Key","Name":"Key","AssemblyName":"Microsoft.AspNetCore.Components","Documentation":"Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.","TagOutputHint":null,"CaseSensitive":true,"TagMatchingRules":[{"TagName":"*","ParentTag":null,"TagStructure":0,"Attributes":[{"Name":"@key","NameComparison":0,"Value":null,"ValueComparison":0,"Diagnostics":[],"Metadata":{"Common.DirectiveAttribute":"True"}}],"Diagnostics":[]}],"BoundAttributes":[{"Kind":"Components.Key","Name":"@key","TypeName":"System.Object","IsEnum":false,"IndexerNamePrefix":null,"IndexerTypeName":null,"Documentation":"Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.","Diagnostics":[],"Metadata":{"Common.PropertyName":"Key","Common.DirectiveAttribute":"True"},"BoundAttributeParameters":[]}],"AllowedChildTags":[],"Diagnostics":[],"Metadata":{"Runtime.Name":"Components.None","Components.IsSpecialKind":"Components.Key","Common.ClassifyAttributesOnly":"True","Common.TypeName":"Microsoft.AspNetCore.Components.Key"}}] \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.Views.dll b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.Views.dll new file mode 100644 index 0000000..8eecc73 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.Views.dll differ diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.Views.pdb b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.Views.pdb new file mode 100644 index 0000000..bae357c Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.Views.pdb differ diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.assets.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.assets.cache new file mode 100644 index 0000000..1413462 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.assets.cache differ diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csproj.CopyComplete b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csproj.CoreCompileInputs.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..8c79708 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +686237007ffba4399a1a92c170ce5b2887bb89d8 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csproj.FileListAbsolute.txt b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5f73c77 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csproj.FileListAbsolute.txt @@ -0,0 +1,32 @@ +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\appsettings.Development.json +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\appsettings.json +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\global.json +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\Properties\launchSettings.json +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\SimpleApp.exe +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\SimpleApp.deps.json +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\SimpleApp.runtimeconfig.json +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\SimpleApp.runtimeconfig.dev.json +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\SimpleApp.dll +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\SimpleApp.pdb +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\SimpleApp.Views.dll +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\bin\Debug\netcoreapp3.1\SimpleApp.Views.pdb +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.csprojAssemblyReference.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.AssemblyInfoInputs.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.AssemblyInfo.cs +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.csproj.CoreCompileInputs.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.MvcApplicationPartsAssemblyInfo.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.RazorAssemblyInfo.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.RazorAssemblyInfo.cs +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.TagHelpers.input.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.TagHelpers.output.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.RazorCoreGenerate.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\Razor\Views\Home\Index.cshtml.g.cs +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.RazorTargetAssemblyInfo.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.RazorTargetAssemblyInfo.cs +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.Views.pdb +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\staticwebassets\SimpleApp.StaticWebAssets.Manifest.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\staticwebassets\SimpleApp.StaticWebAssets.xml +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.dll +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.pdb +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.genruntimeconfig.cache +D:\Git\Forks\pro-asp.net-core-3\06 - Testing\Testing\SimpleApp\obj\Debug\netcoreapp3.1\SimpleApp.csproj.CopyComplete diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csprojAssemblyReference.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csprojAssemblyReference.cache new file mode 100644 index 0000000..bad967a Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.csprojAssemblyReference.cache differ diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.dll b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.dll new file mode 100644 index 0000000..6242e85 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.dll differ diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.exe b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.exe new file mode 100644 index 0000000..36e3f19 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.exe differ diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.genruntimeconfig.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.genruntimeconfig.cache new file mode 100644 index 0000000..34bedab --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.genruntimeconfig.cache @@ -0,0 +1 @@ +86c8e15dd33445635927cfaf398408205fd11473 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.pdb b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.pdb new file mode 100644 index 0000000..3831bb1 Binary files /dev/null and b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/SimpleApp.pdb differ diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/staticwebassets/SimpleApp.StaticWebAssets.Manifest.cache b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/staticwebassets/SimpleApp.StaticWebAssets.Manifest.cache new file mode 100644 index 0000000..e69de29 diff --git a/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/staticwebassets/SimpleApp.StaticWebAssets.xml b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/staticwebassets/SimpleApp.StaticWebAssets.xml new file mode 100644 index 0000000..7b21d22 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/Debug/netcoreapp3.1/staticwebassets/SimpleApp.StaticWebAssets.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.dgspec.json b/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..10343d6 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.dgspec.json @@ -0,0 +1,68 @@ +{ + "format": 1, + "restore": { + "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\SimpleApp.csproj": {} + }, + "projects": { + "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\SimpleApp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\SimpleApp.csproj", + "projectName": "SimpleApp", + "projectPath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\SimpleApp.csproj", + "packagesPath": "C:\\Users\\jeann\\.nuget\\packages\\", + "outputPath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\jeann\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.g.props b/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.g.props new file mode 100644 index 0000000..43bc3d2 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\jeann\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.6.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.g.targets b/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/SimpleApp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/obj/project.assets.json b/06 - Testing/Testing/SimpleApp/obj/project.assets.json new file mode 100644 index 0000000..1c5c9ee --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/project.assets.json @@ -0,0 +1,75 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [] + }, + "packageFolders": { + "C:\\Users\\jeann\\.nuget\\packages\\": {}, + "C:\\Microsoft\\Xamarin\\NuGet\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\SimpleApp.csproj", + "projectName": "SimpleApp", + "projectPath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\SimpleApp.csproj", + "packagesPath": "C:\\Users\\jeann\\.nuget\\packages\\", + "outputPath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Microsoft\\Xamarin\\NuGet\\", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\jeann\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/06 - Testing/Testing/SimpleApp/obj/project.nuget.cache b/06 - Testing/Testing/SimpleApp/obj/project.nuget.cache new file mode 100644 index 0000000..a82817c --- /dev/null +++ b/06 - Testing/Testing/SimpleApp/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "7WM+8YwYikryvQqgvGkWDcheHT3F/0zz/aGNMWi9eMzMfY9sVQT7hiXFbebnAQalOSCe1Cw2nzWm3UX4aQT5Mw==", + "success": true, + "projectFilePath": "D:\\Git\\Forks\\pro-asp.net-core-3\\06 - Testing\\Testing\\SimpleApp\\SimpleApp.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/06 - Testing/Testing/Testing.sln b/06 - Testing/Testing/Testing.sln index be84505..fca9c43 100644 --- a/06 - Testing/Testing/Testing.sln +++ b/06 - Testing/Testing/Testing.sln @@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleApp", "SimpleApp\Simp EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleApp.Tests", "SimpleApp.Tests\SimpleApp.Tests.csproj", "{864D4005-39BD-44C9-B786-1D7BEB855CA8}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleApp.NTests", "SimpleApp.NTests\SimpleApp.NTests.csproj", "{6F6E8D51-8E34-4D20-A530-0D7ABC87139B}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -44,5 +46,17 @@ Global {864D4005-39BD-44C9-B786-1D7BEB855CA8}.Release|x64.Build.0 = Release|Any CPU {864D4005-39BD-44C9-B786-1D7BEB855CA8}.Release|x86.ActiveCfg = Release|Any CPU {864D4005-39BD-44C9-B786-1D7BEB855CA8}.Release|x86.Build.0 = Release|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Debug|x64.ActiveCfg = Debug|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Debug|x64.Build.0 = Debug|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Debug|x86.ActiveCfg = Debug|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Debug|x86.Build.0 = Debug|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Release|Any CPU.Build.0 = Release|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Release|x64.ActiveCfg = Release|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Release|x64.Build.0 = Release|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Release|x86.ActiveCfg = Release|Any CPU + {6F6E8D51-8E34-4D20-A530-0D7ABC87139B}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection EndGlobal diff --git a/corrections+errata.md b/corrections+errata.md index 721a39b..98c3cfb 100644 --- a/corrections+errata.md +++ b/corrections+errata.md @@ -1,8 +1,11 @@ # Errata for *Book Title* -On **page xx** [Summary of error]: +On **page 98** [ Total property should be Names property]: -Details of error here. Highlight key pieces in **bold**. +The listing defines a Names property and provides a default implementation, which means that consumers of the +IProductSelection interface can use the **Total** property even if it isn’t defined by implementation classes, as shown in Listing 5-44. + +Listing 5-44 references the Names property and not the Total property ***