From f337c8df3efd6c5c73ae51374b696edb9ab061fe Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 27 Mar 2026 10:16:17 +0000 Subject: [PATCH 01/14] Backflow from https://github.com/dotnet/dotnet / 7af6021 build 307929 [[ commit created by automation ]] --- Directory.Build.targets | 2 ++ Directory.Packages.props | 2 +- eng/Signing.props | 3 +++ source-build.slnf | 4 +-- .../Extensions/LockFileExtensions.cs | 2 +- .../NuGet/NugetApiManager.cs | 2 +- src/Layout/Directory.Build.props | 4 +++ src/Layout/redist/msbuild-entitlements.plist | 16 ++++++++++++ .../redist/targets/BundledManifests.targets | 17 ++++++------ src/Layout/redist/targets/Crossgen.targets | 1 + .../redist/targets/GenerateLayout.targets | 26 ++++++++++++++++++- ...GenerateDocumentationAndConfigFiles.csproj | 2 ++ src/Tasks/sdk-tasks/sdk-tasks.InTree.targets | 16 +++--------- .../TemplatePackageCoordinatorTests.cs | 8 +++--- 14 files changed, 74 insertions(+), 31 deletions(-) create mode 100644 src/Layout/redist/msbuild-entitlements.plist diff --git a/Directory.Build.targets b/Directory.Build.targets index 1b047230fe58..cc71132b55a6 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -59,6 +59,8 @@ RuntimeFrameworkVersion="$(MicrosoftNETCoreAppRuntimePackageVersion)" /> + diff --git a/Directory.Packages.props b/Directory.Packages.props index 2cb60d612604..21d623676105 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -53,7 +53,7 @@ - + diff --git a/eng/Signing.props b/eng/Signing.props index f0af6ed831fe..fa123b40a992 100644 --- a/eng/Signing.props +++ b/eng/Signing.props @@ -60,6 +60,7 @@ ReSign 3rd party files that we use in the product --> + @@ -87,6 +88,8 @@ + + diff --git a/source-build.slnf b/source-build.slnf index f13e70211de0..076f129615be 100644 --- a/source-build.slnf +++ b/source-build.slnf @@ -1,4 +1,4 @@ -{ +{ "solution": { "path": "sdk.slnx", "projects": [ @@ -8,7 +8,7 @@ "src\\Dotnet.Watch\\DotNetDeltaApplier\\Microsoft.Extensions.DotNetDeltaApplier.csproj", "src\\Dotnet.Watch\\DotNetWatchTasks\\DotNetWatchTasks.csproj", "src\\Dotnet.Watch\\dotnet-watch\\dotnet-watch.csproj", - "src\\BuiltInTools\\HotReloadAgent.WebAssembly.Browser\\Microsoft.DotNet.HotReload.WebAssembly.Browser.csproj", + "src\\Dotnet.Watch\\HotReloadAgent.WebAssembly.Browser\\Microsoft.DotNet.HotReload.WebAssembly.Browser.csproj", "src\\Cli\\Microsoft.DotNet.Cli.Utils\\Microsoft.DotNet.Cli.Utils.csproj", "src\\Cli\\Microsoft.DotNet.Configurer\\Microsoft.DotNet.Configurer.csproj", "src\\Cli\\Microsoft.DotNet.InternalAbstractions\\Microsoft.DotNet.InternalAbstractions.csproj", diff --git a/src/Cli/Microsoft.DotNet.Cli.Utils/Extensions/LockFileExtensions.cs b/src/Cli/Microsoft.DotNet.Cli.Utils/Extensions/LockFileExtensions.cs index bdf8b624a2eb..144cdacd4638 100644 --- a/src/Cli/Microsoft.DotNet.Cli.Utils/Extensions/LockFileExtensions.cs +++ b/src/Cli/Microsoft.DotNet.Cli.Utils/Extensions/LockFileExtensions.cs @@ -17,7 +17,7 @@ public static string GetPackageDirectory(this LockFile lockFile, LockFileTargetL var fallbackPackageFolders = packageFoldersCount > 1 ? packageFolders.Skip(1) : packageFolders; var packageDirectory = new FallbackPackagePathResolver(userPackageFolder, fallbackPackageFolders) - .GetPackageDirectory(library.Name, library.Version); + .GetPackageDirectory(library.Name!, library.Version!)!; return packageDirectory; } diff --git a/src/Cli/Microsoft.TemplateEngine.Cli/NuGet/NugetApiManager.cs b/src/Cli/Microsoft.TemplateEngine.Cli/NuGet/NugetApiManager.cs index 4ac3a4bfabc7..701658552484 100644 --- a/src/Cli/Microsoft.TemplateEngine.Cli/NuGet/NugetApiManager.cs +++ b/src/Cli/Microsoft.TemplateEngine.Cli/NuGet/NugetApiManager.cs @@ -122,7 +122,7 @@ public NugetPackageMetadata(PackageSource packageSource, IPackageSearchMetadata LicenseUrl = metadata.LicenseUrl; License = metadata.LicenseMetadata?.License; Identity = metadata.Identity; - LicenseExpression = metadata.LicenseMetadata?.LicenseExpression.ToString(); + LicenseExpression = metadata.LicenseMetadata?.LicenseExpression?.ToString(); PackageVersion = metadata.Identity.Version; Source = packageSource; diff --git a/src/Layout/Directory.Build.props b/src/Layout/Directory.Build.props index 543b9a54afd0..1368449dc845 100644 --- a/src/Layout/Directory.Build.props +++ b/src/Layout/Directory.Build.props @@ -85,4 +85,8 @@ <_RoslynAppHost Include="$(OutputPath)Roslyn\bincore\VBCSCompiler.dll" /> + + <_MSBuildAppHost Include="$(OutputPath)MSBuild.dll" /> + + diff --git a/src/Layout/redist/msbuild-entitlements.plist b/src/Layout/redist/msbuild-entitlements.plist new file mode 100644 index 000000000000..168fce4fcd87 --- /dev/null +++ b/src/Layout/redist/msbuild-entitlements.plist @@ -0,0 +1,16 @@ + + + + + com.apple.security.cs.allow-jit + + com.apple.security.cs.allow-dyld-environment-variables + + com.apple.security.cs.disable-library-validation + + com.apple.security.cs.debugger + + com.apple.security.get-task-allow + + + diff --git a/src/Layout/redist/targets/BundledManifests.targets b/src/Layout/redist/targets/BundledManifests.targets index 9e6f15274aff..208f8e965f2e 100644 --- a/src/Layout/redist/targets/BundledManifests.targets +++ b/src/Layout/redist/targets/BundledManifests.targets @@ -51,7 +51,7 @@ [%(Version)] - + - $(PkgMicrosoft_DotNet_SignCheck)\tools\Microsoft.DotNet.SignCheck.exe $(ArtifactsLogDir)\workloadmanifestsigncheck.log $(ArtifactsLogDir)\workloadmanifestsigncheck.errors.log @@ -75,13 +74,13 @@ - + + diff --git a/src/Layout/redist/targets/GenerateLayout.targets b/src/Layout/redist/targets/GenerateLayout.targets index 9b28b13ae3b2..04afd4623636 100644 --- a/src/Layout/redist/targets/GenerateLayout.targets +++ b/src/Layout/redist/targets/GenerateLayout.targets @@ -70,6 +70,28 @@ Condition="$(SharedFrameworkRid.StartsWith('osx'))" /> + + + + + + <_FrameworkTlbPath>$(NuGetPackageRoot)microsoft.build.framework\$(MicrosoftBuildVersion)\tools\net472\Microsoft.Build.Framework.tlb + + + + + + @@ -498,12 +520,13 @@ + @@ -551,6 +574,7 @@ GeneratePackagePruneData; PublishContainersSdk; GenerateCliRuntimeConfigurationFiles; + CreateMSBuildAppHost; MakeFscRunnableAndMoveToPublishDir; RemoveFscFilesAfterPublish; PublishTargetExtensions; diff --git a/src/Microsoft.CodeAnalysis.NetAnalyzers/tools/GenerateDocumentationAndConfigFiles/GenerateDocumentationAndConfigFiles.csproj b/src/Microsoft.CodeAnalysis.NetAnalyzers/tools/GenerateDocumentationAndConfigFiles/GenerateDocumentationAndConfigFiles.csproj index 72f49e675f64..d8a06de996cd 100644 --- a/src/Microsoft.CodeAnalysis.NetAnalyzers/tools/GenerateDocumentationAndConfigFiles/GenerateDocumentationAndConfigFiles.csproj +++ b/src/Microsoft.CodeAnalysis.NetAnalyzers/tools/GenerateDocumentationAndConfigFiles/GenerateDocumentationAndConfigFiles.csproj @@ -5,6 +5,8 @@ Exe Major false + + false diff --git a/src/Tasks/sdk-tasks/sdk-tasks.InTree.targets b/src/Tasks/sdk-tasks/sdk-tasks.InTree.targets index a7cfa07f9ed7..d6bab807c46a 100644 --- a/src/Tasks/sdk-tasks/sdk-tasks.InTree.targets +++ b/src/Tasks/sdk-tasks/sdk-tasks.InTree.targets @@ -11,13 +11,15 @@ + + - + @@ -33,17 +35,7 @@ - - - - - + diff --git a/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs index 00eee4a1caf6..5a52b144d6e4 100644 --- a/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs +++ b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs @@ -84,7 +84,7 @@ public void DisplayNuGetPackageMetadata() A.CallTo(() => searchMetadata.ProjectUrl).Returns(new Uri("http://github.com")); A.CallTo(() => searchMetadata.LicenseUrl).Returns(new Uri("https://github.com/dotnet/sdk")); A.CallTo(() => searchMetadata.LicenseMetadata).Returns(licenseMetadata); - A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression.ToString()).Returns("MIT"); + A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression!.ToString()).Returns("MIT"); var extraMetadata = A.Fake(); A.CallTo(() => extraMetadata.Owners).Returns("packageOwner"); @@ -130,7 +130,7 @@ public void DisplayNuGetPackageMetadata_PrefixReserved() A.CallTo(() => searchMetadata.ProjectUrl).Returns(new Uri("http://github.com")); A.CallTo(() => searchMetadata.LicenseUrl).Returns(new Uri("https://github.com/dotnet/sdk")); A.CallTo(() => searchMetadata.LicenseMetadata).Returns(licenseMetadata); - A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression.ToString()).Returns("MIT"); + A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression!.ToString()).Returns("MIT"); var extraMetadata = A.Fake(); A.CallTo(() => extraMetadata.Owners).Returns("packageOwner"); @@ -177,7 +177,7 @@ public void DisplayNuGetPackageMetadata_MultipleAuthors() A.CallTo(() => searchMetadata.ProjectUrl).Returns(new Uri("http://github.com")); A.CallTo(() => searchMetadata.LicenseUrl).Returns(new Uri("https://github.com/dotnet/sdk")); A.CallTo(() => searchMetadata.LicenseMetadata).Returns(licenseMetadata); - A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression.ToString()).Returns("MIT"); + A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression!.ToString()).Returns("MIT"); var extraMetadata = A.Fake(); A.CallTo(() => extraMetadata.Owners).Returns("packageOwner"); @@ -220,7 +220,7 @@ public void DisplayNuGetPackageMetadata_MultipleOwners() A.CallTo(() => searchMetadata.ProjectUrl).Returns(new Uri("http://github.com")); A.CallTo(() => searchMetadata.LicenseUrl).Returns(new Uri("https://github.com/dotnet/sdk")); A.CallTo(() => searchMetadata.LicenseMetadata).Returns(licenseMetadata); - A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression.ToString()).Returns("MIT"); + A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression!.ToString()).Returns("MIT"); var extraMetadata = A.Fake(); A.CallTo(() => extraMetadata.Owners).Returns("owner1, owner2"); From 96503b04ab8d485582975d442245230e0c94fe6e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 27 Mar 2026 10:16:18 +0000 Subject: [PATCH 02/14] Update dependencies from build 307929 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.11.0, Microsoft.DotNet.Web.ProjectTemplates.11.0, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.HostModel, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.App.Ref, Microsoft.NETCore.Platforms, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Internal, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 11.0.0-preview.3.26153.117 -> 11.0.0-preview.3.26176.106) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.26153.117 -> 10.0.0-preview.26176.106) Microsoft.Build, Microsoft.Build.Localization (Version 18.6.0-preview-26153-117 -> 18.6.0-preview-26176-106) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.5.0-rc.15417 -> 7.6.0-rc.17706) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common, Microsoft.TemplateSearch.TemplateDiscovery (Version 11.0.100-preview.3.26153.117 -> 11.0.100-preview.3.26176.106) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.ExternalAccess.HotReload, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.6.0-2.26153.117 -> 5.6.0-2.26176.106) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.26153.117 -> 2.0.0-preview.1.26176.106) Microsoft.DiaSymReader, System.CommandLine (Version 3.0.0-preview.3.26153.117 -> 3.0.0-preview.3.26176.106) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 11.0.0-beta.26153.117 -> 11.0.0-beta.26176.106) Microsoft.FSharp.Compiler (Version 15.2.100-preview3.26153.117 -> 15.2.100-preview3.26176.106) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.5.0-preview-26153-117 -> 18.5.0-preview-26176-106) Microsoft.Web.Xdt (Version 3.3.0-preview.3.26153.117 -> 3.3.0-preview.3.26176.106) Added Dependencies: Microsoft.Extensions.DependencyInjection.Abstractions (Version 11.0.0-preview.3.26176.106) [[ commit created by automation ]] --- eng/Version.Details.props | 268 ++++----- eng/Version.Details.xml | 540 +++++++++--------- eng/common/build.ps1 | 2 + eng/common/build.sh | 6 + eng/common/core-templates/job/renovate.yml | 75 ++- .../job/source-index-stage1.yml | 2 + .../core-templates/jobs/codeql-build.yml | 32 -- .../core-templates/post-build/post-build.yml | 16 +- eng/common/core-templates/stages/renovate.yml | 27 +- .../steps/install-microbuild.yml | 4 +- .../core-templates/steps/publish-logs.yml | 1 - eng/common/cross/build-rootfs.sh | 73 +++ eng/common/cross/toolchain.cmake | 15 +- eng/common/native/init-distro-rid.sh | 2 + eng/common/renovate.env | 3 + eng/common/sdl/NuGet.config | 18 - eng/common/sdl/configure-sdl-tool.ps1 | 130 ----- eng/common/sdl/execute-all-sdl-tools.ps1 | 167 ------ eng/common/sdl/extract-artifact-archives.ps1 | 63 -- eng/common/sdl/extract-artifact-packages.ps1 | 82 --- eng/common/sdl/init-sdl.ps1 | 55 -- eng/common/sdl/packages.config | 4 - eng/common/sdl/run-sdl.ps1 | 49 -- eng/common/sdl/sdl.ps1 | 38 -- eng/common/sdl/trim-assets-version.ps1 | 75 --- eng/common/template-guidance.md | 3 - .../templates-official/jobs/codeql-build.yml | 7 - .../variables/sdl-variables.yml | 7 - eng/common/templates/jobs/codeql-build.yml | 7 - eng/common/tools.ps1 | 9 + eng/common/tools.sh | 12 +- global.json | 6 +- 32 files changed, 627 insertions(+), 1171 deletions(-) delete mode 100644 eng/common/core-templates/jobs/codeql-build.yml delete mode 100644 eng/common/sdl/NuGet.config delete mode 100644 eng/common/sdl/configure-sdl-tool.ps1 delete mode 100644 eng/common/sdl/execute-all-sdl-tools.ps1 delete mode 100644 eng/common/sdl/extract-artifact-archives.ps1 delete mode 100644 eng/common/sdl/extract-artifact-packages.ps1 delete mode 100644 eng/common/sdl/init-sdl.ps1 delete mode 100644 eng/common/sdl/packages.config delete mode 100644 eng/common/sdl/run-sdl.ps1 delete mode 100644 eng/common/sdl/sdl.ps1 delete mode 100644 eng/common/sdl/trim-assets-version.ps1 delete mode 100644 eng/common/templates-official/jobs/codeql-build.yml delete mode 100644 eng/common/templates-official/variables/sdl-variables.yml delete mode 100644 eng/common/templates/jobs/codeql-build.yml diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 854fe73e2571..ac88c2468fd5 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,141 +8,141 @@ This file should be imported by eng/Versions.props 2.1.0 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 10.0.0-preview.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 18.6.0-preview-26153-117 - 18.6.0-preview-26153-117 - 7.5.0-rc.15417 - 11.0.100-preview.3.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 10.0.0-preview.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 2.0.0-preview.1.26153.117 - 3.0.0-preview.3.26153.117 - 11.0.0-beta.26153.117 - 11.0.0-beta.26153.117 - 11.0.0-beta.26153.117 - 11.0.0-beta.26153.117 - 11.0.0-beta.26153.117 - 11.0.0-beta.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-beta.26153.117 - 11.0.0-beta.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 15.2.100-preview3.26153.117 - 11.0.0-preview.3.26153.117 - 5.6.0-2.26153.117 - 5.6.0-2.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 10.0.0-preview.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 18.6.0-preview-26176-106 + 18.6.0-preview-26176-106 + 7.6.0-rc.17706 + 11.0.100-preview.3.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 10.0.0-preview.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 2.0.0-preview.1.26176.106 + 3.0.0-preview.3.26176.106 + 11.0.0-beta.26176.106 + 11.0.0-beta.26176.106 + 11.0.0-beta.26176.106 + 11.0.0-beta.26176.106 + 11.0.0-beta.26176.106 + 11.0.0-beta.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-beta.26176.106 + 11.0.0-beta.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 15.2.100-preview3.26176.106 + 11.0.0-preview.3.26176.106 + 5.6.0-2.26176.106 + 5.6.0-2.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 10.0.0-preview.7.25377.103 - 10.0.0-preview.26153.117 - 11.0.0-preview.3.26153.117 - 18.5.0-preview-26153-117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 11.0.100-preview.3.26153.117 - 18.5.0-preview-26153-117 - 18.5.0-preview-26153-117 - 3.3.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 7.5.0-rc.15417 - 11.0.0-preview.3.26153.117 - 3.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 - 11.0.0-preview.3.26153.117 + 10.0.0-preview.26176.106 + 11.0.0-preview.3.26176.106 + 18.5.0-preview-26176-106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 11.0.100-preview.3.26176.106 + 18.5.0-preview-26176-106 + 18.5.0-preview-26176-106 + 3.3.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 7.6.0-rc.17706 + 11.0.0-preview.3.26176.106 + 3.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26176.106 2.2.0-preview.26174.1 4.2.0-preview.26174.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9061ad7f0e5d..5f17856644b0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 @@ -68,174 +68,174 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - - https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet - 4c0aa722933ea491006247bbc0a484fa3c28cd14 + + https://github.com/dotnet/dotnet + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 https://github.com/microsoft/testfx @@ -577,9 +577,9 @@ https://github.com/microsoft/testfx 926d2f3fbfce8f04a1c05e743d28715d93baa5bb - + https://github.com/dotnet/dotnet - 15ac4103422d47f7c8f14fa98e813f315432d03b + 7af60210ff756fa343088d4dc1b7080c200dea50 diff --git a/eng/common/build.ps1 b/eng/common/build.ps1 index 8cfee107e7a3..18397a60eb85 100644 --- a/eng/common/build.ps1 +++ b/eng/common/build.ps1 @@ -6,6 +6,7 @@ Param( [string][Alias('v')]$verbosity = "minimal", [string] $msbuildEngine = $null, [bool] $warnAsError = $true, + [string] $warnNotAsError = '', [bool] $nodeReuse = $true, [switch] $buildCheck = $false, [switch][Alias('r')]$restore, @@ -70,6 +71,7 @@ function Print-Usage() { Write-Host " -excludeCIBinarylog Don't output binary log (short: -nobl)" Write-Host " -prepareMachine Prepare machine for CI run, clean up processes after build" Write-Host " -warnAsError Sets warnaserror msbuild parameter ('true' or 'false')" + Write-Host " -warnNotAsError Sets a semi-colon delimited list of warning codes that should not be treated as errors" Write-Host " -msbuildEngine Msbuild engine to use to run build ('dotnet', 'vs', or unspecified)." Write-Host " -excludePrereleaseVS Set to exclude build engines in prerelease versions of Visual Studio" Write-Host " -nativeToolsOnMachine Sets the native tools on machine environment variable (indicating that the script should use native tools on machine)" diff --git a/eng/common/build.sh b/eng/common/build.sh index ec3e80d189ea..5883e53bcfb1 100755 --- a/eng/common/build.sh +++ b/eng/common/build.sh @@ -42,6 +42,7 @@ usage() echo " --prepareMachine Prepare machine for CI run, clean up processes after build" echo " --nodeReuse Sets nodereuse msbuild parameter ('true' or 'false')" echo " --warnAsError Sets warnaserror msbuild parameter ('true' or 'false')" + echo " --warnNotAsError Sets a semi-colon delimited list of warning codes that should not be treated as errors" echo " --buildCheck Sets /check msbuild parameter" echo " --fromVMR Set when building from within the VMR" echo "" @@ -78,6 +79,7 @@ ci=false clean=false warn_as_error=true +warn_not_as_error='' node_reuse=true build_check=false binary_log=false @@ -176,6 +178,10 @@ while [[ $# -gt 0 ]]; do warn_as_error=$2 shift ;; + -warnnotaserror) + warn_not_as_error=$2 + shift + ;; -nodereuse) node_reuse=$2 shift diff --git a/eng/common/core-templates/job/renovate.yml b/eng/common/core-templates/job/renovate.yml index b662269d5db9..ab233539b5dc 100644 --- a/eng/common/core-templates/job/renovate.yml +++ b/eng/common/core-templates/job/renovate.yml @@ -53,6 +53,30 @@ parameters: type: boolean default: false +# Name of the arcade repository resource in the pipeline. +# This allows repos which haven't been onboarded to Arcade to still use this +# template by checking out the repo as a resource with a custom name and pointing +# this parameter to it. +- name: arcadeRepoResource + type: string + default: self + +# Directory name for the self repo under $(Build.SourcesDirectory) in multi-checkout. +# In multi-checkout (when arcadeRepoResource != 'self'), Azure DevOps checks out the +# self repo to $(Build.SourcesDirectory)/. Set this to match the auto-generated +# directory name. Using the auto-generated name is necessary rather than explicitly +# defining a checkout path because container jobs expect repos to live under the agent's +# workspace ($(Pipeline.Workspace)). On some self-hosted setups the host path +# (e.g., /mnt/vss/_work) differs from the container path (e.g., /__w), and a custom checkout +# path can fail validation. Using the default checkout location keeps the paths consistent +# and avoids this issue. +- name: selfRepoName + type: string + default: '' +- name: arcadeRepoName + type: string + default: '' + # Pool configuration for the job. - name: pool type: object @@ -71,16 +95,36 @@ jobs: # Changing the variable name here would require updating the name in https://github.com/dotnet/arcade/blob/main/eng/renovate.json as well. - name: renovateVersion value: '42' + readonly: true + - name: renovateLogFilePath + value: '$(Build.ArtifactStagingDirectory)/renovate.json' + readonly: true - name: dryRunArg + readonly: true ${{ if eq(parameters.dryRun, true) }}: value: 'full' ${{ else }}: value: '' - name: recreateWhenArg + readonly: true ${{ if eq(parameters.forceRecreatePR, true) }}: value: 'always' ${{ else }}: value: '' + # In multi-checkout (without custom paths), Azure DevOps places each repo under + # $(Build.SourcesDirectory)/. selfRepoName must be provided in that case. + - name: selfRepoPath + readonly: true + ${{ if eq(parameters.arcadeRepoResource, 'self') }}: + value: '$(Build.SourcesDirectory)' + ${{ else }}: + value: '$(Build.SourcesDirectory)/${{ parameters.selfRepoName }}' + - name: arcadeRepoPath + readonly: true + ${{ if eq(parameters.arcadeRepoResource, 'self') }}: + value: '$(Build.SourcesDirectory)' + ${{ else }}: + value: '$(Build.SourcesDirectory)/${{ parameters.arcadeRepoName }}' pool: ${{ parameters.pool }} templateContext: @@ -96,8 +140,19 @@ jobs: steps: - checkout: self fetchDepth: 1 + + - ${{ if ne(parameters.arcadeRepoResource, 'self') }}: + - checkout: ${{ parameters.arcadeRepoResource }} + fetchDepth: 1 - - script: renovate-config-validator $(Build.SourcesDirectory)/${{parameters.renovateConfigPath}} + - script: | + renovate-config-validator $(selfRepoPath)/${{parameters.renovateConfigPath}} 2>&1 | tee /tmp/renovate-config-validator.out + validatorExit=${PIPESTATUS[0]} + if grep -q '^ WARN:' /tmp/renovate-config-validator.out; then + echo "##vso[task.logissue type=warning]Renovate config validator produced warnings." + echo "##vso[task.complete result=SucceededWithIssues]" + fi + exit $validatorExit displayName: Validate Renovate config env: LOG_LEVEL: info @@ -105,8 +160,14 @@ jobs: LOG_FILE: $(Build.ArtifactStagingDirectory)/renovate-config-validator.json - script: | - . $(Build.SourcesDirectory)/eng/common/renovate.env - renovate + . $(arcadeRepoPath)/eng/common/renovate.env + renovate 2>&1 | tee /tmp/renovate.out + renovateExit=${PIPESTATUS[0]} + if grep -q '^ WARN:' /tmp/renovate.out; then + echo "##vso[task.logissue type=warning]Renovate produced warnings." + echo "##vso[task.complete result=SucceededWithIssues]" + fi + exit $renovateExit displayName: Run Renovate env: RENOVATE_FORK_TOKEN: $(BotAccount-dotnet-renovate-bot-PAT) @@ -117,13 +178,13 @@ jobs: RENOVATE_RECREATE_WHEN: $(recreateWhenArg) LOG_LEVEL: info LOG_FILE_LEVEL: debug - LOG_FILE: $(Build.ArtifactStagingDirectory)/renovate.json - RENOVATE_CONFIG_FILE: $(Build.SourcesDirectory)/${{parameters.renovateConfigPath}} + LOG_FILE: $(renovateLogFilePath) + RENOVATE_CONFIG_FILE: $(selfRepoPath)/${{parameters.renovateConfigPath}} - script: | echo "PRs created by Renovate:" - if [ -s "$(Build.ArtifactStagingDirectory)/renovate-log.json" ]; then - if ! jq -r 'select(.msg == "PR created" and .pr != null) | "https://github.com/\(.repository)/pull/\(.pr)"' "$(Build.ArtifactStagingDirectory)/renovate-log.json" | sort -u; then + if [ -s "$(renovateLogFilePath)" ]; then + if ! jq -r 'select(.msg == "PR created" and .pr != null) | "https://github.com/\(.repository)/pull/\(.pr)"' "$(renovateLogFilePath)" | sort -u; then echo "##vso[task.logissue type=warning]Failed to parse Renovate log file with jq." echo "##vso[task.complete result=SucceededWithIssues]" fi diff --git a/eng/common/core-templates/job/source-index-stage1.yml b/eng/common/core-templates/job/source-index-stage1.yml index cf02b82d4e20..bac6ac5faac3 100644 --- a/eng/common/core-templates/job/source-index-stage1.yml +++ b/eng/common/core-templates/job/source-index-stage1.yml @@ -15,6 +15,8 @@ jobs: variables: - name: BinlogPath value: ${{ parameters.binlogPath }} + - name: skipComponentGovernanceDetection + value: true - template: /eng/common/core-templates/variables/pool-providers.yml parameters: is1ESPipeline: ${{ parameters.is1ESPipeline }} diff --git a/eng/common/core-templates/jobs/codeql-build.yml b/eng/common/core-templates/jobs/codeql-build.yml deleted file mode 100644 index dbc14ac580a2..000000000000 --- a/eng/common/core-templates/jobs/codeql-build.yml +++ /dev/null @@ -1,32 +0,0 @@ -parameters: - # See schema documentation in /Documentation/AzureDevOps/TemplateSchema.md - continueOnError: false - # Required: A collection of jobs to run - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#job - jobs: [] - # Optional: if specified, restore and use this version of Guardian instead of the default. - overrideGuardianVersion: '' - is1ESPipeline: '' - -jobs: -- template: /eng/common/core-templates/jobs/jobs.yml - parameters: - is1ESPipeline: ${{ parameters.is1ESPipeline }} - enableMicrobuild: false - enablePublishBuildArtifacts: false - enablePublishTestResults: false - enablePublishBuildAssets: false - enableTelemetry: true - - variables: - - group: Publish-Build-Assets - # The Guardian version specified in 'eng/common/sdl/packages.config'. This value must be kept in - # sync with the packages.config file. - - name: DefaultGuardianVersion - value: 0.109.0 - - name: GuardianPackagesConfigFile - value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config - - name: GuardianVersion - value: ${{ coalesce(parameters.overrideGuardianVersion, '$(DefaultGuardianVersion)') }} - - jobs: ${{ parameters.jobs }} - diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 9438429ca378..c5ece1850063 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -50,16 +50,6 @@ parameters: type: boolean default: false -- name: SDLValidationParameters - type: object - default: - enable: false - publishGdn: false - continueOnError: false - params: '' - artifactNames: '' - downloadArtifacts: true - - name: isAssetlessBuild type: boolean displayName: Is Assetless Build @@ -103,7 +93,7 @@ parameters: default: false stages: -- ${{ if or(eq( parameters.enableNugetValidation, 'true'), eq(parameters.enableSigningValidation, 'true'), eq(parameters.enableSourceLinkValidation, 'true'), eq(parameters.SDLValidationParameters.enable, 'true')) }}: +- ${{ if or(eq( parameters.enableNugetValidation, 'true'), eq(parameters.enableSigningValidation, 'true'), eq(parameters.enableSourceLinkValidation, 'true')) }}: - stage: Validate dependsOn: ${{ parameters.validateDependsOn }} displayName: Validate Build Assets @@ -206,7 +196,7 @@ stages: displayName: Validate inputs: filePath: eng\common\sdk-task.ps1 - arguments: -task SigningValidation -restore -msbuildEngine vs + arguments: -task SigningValidation -restore /p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts' /p:SignCheckExclusionsFile='$(System.DefaultWorkingDirectory)/eng/SignCheckExclusionsFile.txt' ${{ parameters.signingValidationAdditionalParameters }} @@ -268,7 +258,7 @@ stages: - ${{ if ne(parameters.publishAssetsImmediately, 'true') }}: - stage: publish_using_darc - ${{ if or(eq(parameters.enableNugetValidation, 'true'), eq(parameters.enableSigningValidation, 'true'), eq(parameters.enableSourceLinkValidation, 'true'), eq(parameters.SDLValidationParameters.enable, 'true')) }}: + ${{ if or(eq(parameters.enableNugetValidation, 'true'), eq(parameters.enableSigningValidation, 'true'), eq(parameters.enableSourceLinkValidation, 'true')) }}: dependsOn: ${{ parameters.publishDependsOn }} ${{ else }}: dependsOn: ${{ parameters.validateDependsOn }} diff --git a/eng/common/core-templates/stages/renovate.yml b/eng/common/core-templates/stages/renovate.yml index 383e397e5d3d..41f3b6cc8570 100644 --- a/eng/common/core-templates/stages/renovate.yml +++ b/eng/common/core-templates/stages/renovate.yml @@ -35,6 +35,21 @@ parameters: type: boolean default: false +# Name of the arcade repository resource in the pipeline. +# This allows repos which haven't been onboarded to Arcade to still use this +# template by checking out the repo as a resource with a custom name and pointing +# this parameter to it. +- name: arcadeRepoResource + type: string + default: 'self' + +- name: selfRepoName + type: string + default: '' +- name: arcadeRepoName + type: string + default: '' + # Pool configuration for the pipeline. - name: pool type: object @@ -69,6 +84,13 @@ extends: pool: ${{ parameters.pool }} sdl: sourceAnalysisPool: ${{ parameters.sdlPool }} + # When repos that aren't onboarded to Arcade use this template, they set the + # arcadeRepoResource parameter to point to their Arcade repo resource. In that case, + # Aracde will be excluded from SDL analysis. + ${{ if ne(parameters.arcadeRepoResource, 'self') }}: + sourceRepositoriesToScan: + exclude: + - repository: ${{ parameters.arcadeRepoResource }} containers: RenovateContainer: image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-renovate-${{ parameters.renovateVersion }}-amd64 @@ -76,7 +98,7 @@ extends: - stage: Renovate displayName: Run Renovate jobs: - - template: /eng/common/core-templates/job/renovate.yml@self + - template: /eng/common/core-templates/job/renovate.yml@${{ parameters.arcadeRepoResource }} parameters: renovateConfigPath: ${{ parameters.renovateConfigPath }} gitHubRepo: ${{ parameters.gitHubRepo }} @@ -84,3 +106,6 @@ extends: dryRun: ${{ parameters.dryRun }} forceRecreatePR: ${{ parameters.forceRecreatePR }} pool: ${{ parameters.pool }} + arcadeRepoResource: ${{ parameters.arcadeRepoResource }} + selfRepoName: ${{ parameters.selfRepoName }} + arcadeRepoName: ${{ parameters.arcadeRepoName }} diff --git a/eng/common/core-templates/steps/install-microbuild.yml b/eng/common/core-templates/steps/install-microbuild.yml index 4f4b56ed2a6b..76a54e157fda 100644 --- a/eng/common/core-templates/steps/install-microbuild.yml +++ b/eng/common/core-templates/steps/install-microbuild.yml @@ -73,7 +73,7 @@ steps: # YAML expansion, and Windows vs. Linux/Mac uses different service connections. However, # we can avoid including the MB install step if not enabled at all. This avoids a bunch of # extra pipeline authorizations, since most pipelines do not sign on non-Windows. - - template: /eng/common/core-templates/steps/install-microbuild-impl.yml@self + - template: /eng/common/core-templates/steps/install-microbuild-impl.yml parameters: enablePreviewMicrobuild: ${{ parameters.enablePreviewMicrobuild }} microbuildTaskInputs: @@ -95,7 +95,7 @@ steps: condition: and(succeeded(), eq(variables['Agent.Os'], 'Windows_NT'), in(variables['_SignType'], 'real', 'test')) - ${{ if eq(parameters.enableMicrobuildForMacAndLinux, true) }}: - - template: /eng/common/core-templates/steps/install-microbuild-impl.yml@self + - template: /eng/common/core-templates/steps/install-microbuild-impl.yml parameters: enablePreviewMicrobuild: ${{ parameters.enablePreviewMicrobuild }} microbuildTaskInputs: diff --git a/eng/common/core-templates/steps/publish-logs.yml b/eng/common/core-templates/steps/publish-logs.yml index 5a927b4c7bcb..a9ea99ba6aaa 100644 --- a/eng/common/core-templates/steps/publish-logs.yml +++ b/eng/common/core-templates/steps/publish-logs.yml @@ -31,7 +31,6 @@ steps: -runtimeSourceFeed https://ci.dot.net/internal -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' '$(publishing-dnceng-devdiv-code-r-build-re)' - '$(MaestroAccessToken)' '$(dn-bot-all-orgs-artifact-feeds-rw)' '$(akams-client-id)' '$(microsoft-symbol-server-pat)' diff --git a/eng/common/cross/build-rootfs.sh b/eng/common/cross/build-rootfs.sh index ef97671fe6cb..314c93c57598 100755 --- a/eng/common/cross/build-rootfs.sh +++ b/eng/common/cross/build-rootfs.sh @@ -9,6 +9,7 @@ usage() echo "CodeName - optional, Code name for Linux, can be: xenial(default), zesty, bionic, alpine" echo " for alpine can be specified with version: alpineX.YY or alpineedge" echo " for FreeBSD can be: freebsd13, freebsd14" + echo " for OpenBSD can be: openbsd" echo " for illumos can be: illumos" echo " for Haiku can be: haiku." echo "lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine and FreeBSD" @@ -27,6 +28,8 @@ __BuildArch=arm __AlpineArch=armv7 __FreeBSDArch=arm __FreeBSDMachineArch=armv7 +__OpenBSDArch=arm +__OpenBSDMachineArch=armv7 __IllumosArch=arm7 __HaikuArch=arm __QEMUArch=arm @@ -82,6 +85,12 @@ __FreeBSDPackages+=" openssl" __FreeBSDPackages+=" krb5" __FreeBSDPackages+=" terminfo-db" +__OpenBSDVersion="7.8" +__OpenBSDPackages="heimdal-libs" +__OpenBSDPackages+=" icu4c" +__OpenBSDPackages+=" inotify-tools" +__OpenBSDPackages+=" openssl" + __IllumosPackages="icu" __IllumosPackages+=" mit-krb5" __IllumosPackages+=" openssl" @@ -160,6 +169,8 @@ while :; do __QEMUArch=aarch64 __FreeBSDArch=arm64 __FreeBSDMachineArch=aarch64 + __OpenBSDArch=arm64 + __OpenBSDMachineArch=aarch64 ;; armel) __BuildArch=armel @@ -235,6 +246,8 @@ while :; do __UbuntuArch=amd64 __FreeBSDArch=amd64 __FreeBSDMachineArch=amd64 + __OpenBSDArch=amd64 + __OpenBSDMachineArch=amd64 __illumosArch=x86_64 __HaikuArch=x86_64 __UbuntuRepo="http://archive.ubuntu.com/ubuntu/" @@ -385,6 +398,10 @@ while :; do __FreeBSDABI="14" __SkipUnmount=1 ;; + openbsd) + __CodeName=openbsd + __SkipUnmount=1 + ;; illumos) __CodeName=illumos __SkipUnmount=1 @@ -593,6 +610,62 @@ elif [[ "$__CodeName" == "freebsd" ]]; then INSTALL_AS_USER=$(whoami) "$__RootfsDir"/host/sbin/pkg -r "$__RootfsDir" -C "$__RootfsDir"/usr/local/etc/pkg.conf update # shellcheck disable=SC2086 INSTALL_AS_USER=$(whoami) "$__RootfsDir"/host/sbin/pkg -r "$__RootfsDir" -C "$__RootfsDir"/usr/local/etc/pkg.conf install --yes $__FreeBSDPackages +elif [[ "$__CodeName" == "openbsd" ]]; then + # determine mirrors + OPENBSD_MIRROR="https://cdn.openbsd.org/pub/OpenBSD/$__OpenBSDVersion/$__OpenBSDMachineArch" + + # download base system sets + ensureDownloadTool + + BASE_SETS=(base comp) + for set in "${BASE_SETS[@]}"; do + FILE="${set}${__OpenBSDVersion//./}.tgz" + echo "Downloading $FILE..." + if [[ "$__hasWget" == 1 ]]; then + wget -O- "$OPENBSD_MIRROR/$FILE" | tar -C "$__RootfsDir" -xzpf - + else + curl -SL "$OPENBSD_MIRROR/$FILE" | tar -C "$__RootfsDir" -xzpf - + fi + done + + PKG_MIRROR="https://cdn.openbsd.org/pub/OpenBSD/${__OpenBSDVersion}/packages/${__OpenBSDMachineArch}" + + echo "Installing packages into sysroot..." + + # Fetch package index once + if [[ "$__hasWget" == 1 ]]; then + PKG_INDEX=$(wget -qO- "$PKG_MIRROR/") + else + PKG_INDEX=$(curl -s "$PKG_MIRROR/") + fi + + for pkg in $__OpenBSDPackages; do + PKG_FILE=$(echo "$PKG_INDEX" | grep -Po ">\K${pkg}-[0-9][^\" ]*\.tgz" \ + | sort -V | tail -n1) + + echo "Resolved package filename for $pkg: $PKG_FILE" + + [[ -z "$PKG_FILE" ]] && { echo "ERROR: Package $pkg not found"; exit 1; } + + if [[ "$__hasWget" == 1 ]]; then + wget -O- "$PKG_MIRROR/$PKG_FILE" | tar -C "$__RootfsDir" -xzpf - + else + curl -SL "$PKG_MIRROR/$PKG_FILE" | tar -C "$__RootfsDir" -xzpf - + fi + done + + echo "Creating versionless symlinks for shared libraries..." + # Find all versioned .so files and create the base .so symlink + for lib in "$__RootfsDir/usr/lib/libc++.so."* "$__RootfsDir/usr/lib/libc++abi.so."* "$__RootfsDir/usr/lib/libpthread.so."*; do + if [ -f "$lib" ]; then + # Extract the filename (e.g., libc++.so.12.0) + VERSIONED_NAME=$(basename "$lib") + # Remove the trailing version numbers (e.g., libc++.so) + BASE_NAME=${VERSIONED_NAME%.so.*}.so + # Create the symlink in the same directory + ln -sf "$VERSIONED_NAME" "$__RootfsDir/usr/lib/$BASE_NAME" + fi + done elif [[ "$__CodeName" == "illumos" ]]; then mkdir "$__RootfsDir/tmp" pushd "$__RootfsDir/tmp" diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index 0ff85cf0367e..ff2dfdb4a5bf 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -3,15 +3,22 @@ set(CROSS_ROOTFS $ENV{ROOTFS_DIR}) # reset platform variables (e.g. cmake 3.25 sets LINUX=1) unset(LINUX) unset(FREEBSD) +unset(OPENBSD) unset(ILLUMOS) unset(ANDROID) unset(TIZEN) unset(HAIKU) set(TARGET_ARCH_NAME $ENV{TARGET_BUILD_ARCH}) + +file(GLOB OPENBSD_PROBE "${CROSS_ROOTFS}/etc/signify/openbsd-*.pub") + if(EXISTS ${CROSS_ROOTFS}/bin/freebsd-version) set(CMAKE_SYSTEM_NAME FreeBSD) set(FREEBSD 1) +elseif(OPENBSD_PROBE) + set(CMAKE_SYSTEM_NAME OpenBSD) + set(OPENBSD 1) elseif(EXISTS ${CROSS_ROOTFS}/usr/platform/i86pc) set(CMAKE_SYSTEM_NAME SunOS) set(ILLUMOS 1) @@ -53,6 +60,8 @@ elseif(TARGET_ARCH_NAME STREQUAL "arm64") endif() elseif(FREEBSD) set(triple "aarch64-unknown-freebsd12") + elseif(OPENBSD) + set(triple "aarch64-unknown-openbsd") endif() elseif(TARGET_ARCH_NAME STREQUAL "armel") set(CMAKE_SYSTEM_PROCESSOR armv7l) @@ -109,6 +118,8 @@ elseif(TARGET_ARCH_NAME STREQUAL "x64") endif() elseif(FREEBSD) set(triple "x86_64-unknown-freebsd12") + elseif(OPENBSD) + set(triple "x86_64-unknown-openbsd") elseif(ILLUMOS) set(TOOLCHAIN "x86_64-illumos") elseif(HAIKU) @@ -193,7 +204,7 @@ if(ANDROID) # include official NDK toolchain script include(${CROSS_ROOTFS}/../build/cmake/android.toolchain.cmake) -elseif(FREEBSD) +elseif(FREEBSD OR OPENBSD) # we cross-compile by instructing clang set(CMAKE_C_COMPILER_TARGET ${triple}) set(CMAKE_CXX_COMPILER_TARGET ${triple}) @@ -291,7 +302,7 @@ endif() # Specify compile options -if((TARGET_ARCH_NAME MATCHES "^(arm|arm64|armel|armv6|loongarch64|ppc64le|riscv64|s390x|x64|x86)$" AND NOT ANDROID AND NOT FREEBSD) OR ILLUMOS OR HAIKU) +if((TARGET_ARCH_NAME MATCHES "^(arm|arm64|armel|armv6|loongarch64|ppc64le|riscv64|s390x|x64|x86)$" AND NOT ANDROID AND NOT FREEBSD AND NOT OPENBSD) OR ILLUMOS OR HAIKU) set(CMAKE_C_COMPILER_TARGET ${TOOLCHAIN}) set(CMAKE_CXX_COMPILER_TARGET ${TOOLCHAIN}) set(CMAKE_ASM_COMPILER_TARGET ${TOOLCHAIN}) diff --git a/eng/common/native/init-distro-rid.sh b/eng/common/native/init-distro-rid.sh index 83ea7aab0e08..8fc6d2fec78d 100644 --- a/eng/common/native/init-distro-rid.sh +++ b/eng/common/native/init-distro-rid.sh @@ -39,6 +39,8 @@ getNonPortableDistroRid() # $rootfsDir can be empty. freebsd-version is a shell script and should always work. __freebsd_major_version=$("$rootfsDir"/bin/freebsd-version | cut -d'.' -f1) nonPortableRid="freebsd.$__freebsd_major_version-${targetArch}" + elif [ "$targetOs" = "openbsd" ]; then + nonPortableRid="openbsd.$(uname -r)-${targetArch}" elif command -v getprop >/dev/null && getprop ro.product.system.model | grep -qi android; then __android_sdk_version=$(getprop ro.build.version.sdk) nonPortableRid="android.$__android_sdk_version-${targetArch}" diff --git a/eng/common/renovate.env b/eng/common/renovate.env index 9f79dbc6b5fa..17ecc05d9b19 100644 --- a/eng/common/renovate.env +++ b/eng/common/renovate.env @@ -37,3 +37,6 @@ export RENOVATE_PR_BODY_TEMPLATE='{{{header}}}{{{table}}}{{{warnings}}}{{{notes} # https://docs.renovatebot.com/self-hosted-configuration/#globalextends # Disable the Dependency Dashboard issue that tracks all updates export RENOVATE_GLOBAL_EXTENDS='[":disableDependencyDashboard"]' + +# Allow all commands for post-upgrade commands. +export RENOVATE_ALLOWED_COMMANDS='[".*"]' diff --git a/eng/common/sdl/NuGet.config b/eng/common/sdl/NuGet.config deleted file mode 100644 index 3849bdb3cf51..000000000000 --- a/eng/common/sdl/NuGet.config +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/eng/common/sdl/configure-sdl-tool.ps1 b/eng/common/sdl/configure-sdl-tool.ps1 deleted file mode 100644 index 27f5a4115fc7..000000000000 --- a/eng/common/sdl/configure-sdl-tool.ps1 +++ /dev/null @@ -1,130 +0,0 @@ -Param( - [string] $GuardianCliLocation, - [string] $WorkingDirectory, - [string] $TargetDirectory, - [string] $GdnFolder, - # The list of Guardian tools to configure. For each object in the array: - # - If the item is a [hashtable], it must contain these entries: - # - Name = The tool name as Guardian knows it. - # - Scenario = (Optional) Scenario-specific name for this configuration entry. It must be unique - # among all tool entries with the same Name. - # - Args = (Optional) Array of Guardian tool configuration args, like '@("Target > C:\temp")' - # - If the item is a [string] $v, it is treated as '@{ Name="$v" }' - [object[]] $ToolsList, - [string] $GuardianLoggerLevel='Standard', - # Optional: Additional params to add to any tool using CredScan. - [string[]] $CrScanAdditionalRunConfigParams, - # Optional: Additional params to add to any tool using PoliCheck. - [string[]] $PoliCheckAdditionalRunConfigParams, - # Optional: Additional params to add to any tool using CodeQL/Semmle. - [string[]] $CodeQLAdditionalRunConfigParams, - # Optional: Additional params to add to any tool using Binskim. - [string[]] $BinskimAdditionalRunConfigParams -) - -$ErrorActionPreference = 'Stop' -Set-StrictMode -Version 2.0 -$disableConfigureToolsetImport = $true -$global:LASTEXITCODE = 0 - -try { - # `tools.ps1` checks $ci to perform some actions. Since the SDL - # scripts don't necessarily execute in the same agent that run the - # build.ps1/sh script this variable isn't automatically set. - $ci = $true - . $PSScriptRoot\..\tools.ps1 - - # Normalize tools list: all in [hashtable] form with defined values for each key. - $ToolsList = $ToolsList | - ForEach-Object { - if ($_ -is [string]) { - $_ = @{ Name = $_ } - } - - if (-not ($_['Scenario'])) { $_.Scenario = "" } - if (-not ($_['Args'])) { $_.Args = @() } - $_ - } - - Write-Host "List of tools to configure:" - $ToolsList | ForEach-Object { $_ | Out-String | Write-Host } - - # We store config files in the r directory of .gdn - $gdnConfigPath = Join-Path $GdnFolder 'r' - $ValidPath = Test-Path $GuardianCliLocation - - if ($ValidPath -eq $False) - { - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message "Invalid Guardian CLI Location." - ExitWithExitCode 1 - } - - foreach ($tool in $ToolsList) { - # Put together the name and scenario to make a unique key. - $toolConfigName = $tool.Name - if ($tool.Scenario) { - $toolConfigName += "_" + $tool.Scenario - } - - Write-Host "=== Configuring $toolConfigName..." - - $gdnConfigFile = Join-Path $gdnConfigPath "$toolConfigName-configure.gdnconfig" - - # For some tools, add default and automatic args. - switch -Exact ($tool.Name) { - 'credscan' { - if ($targetDirectory) { - $tool.Args += "`"TargetDirectory < $TargetDirectory`"" - } - $tool.Args += "`"OutputType < pre`"" - $tool.Args += $CrScanAdditionalRunConfigParams - } - 'policheck' { - if ($targetDirectory) { - $tool.Args += "`"Target < $TargetDirectory`"" - } - $tool.Args += $PoliCheckAdditionalRunConfigParams - } - {$_ -in 'semmle', 'codeql'} { - if ($targetDirectory) { - $tool.Args += "`"SourceCodeDirectory < $TargetDirectory`"" - } - $tool.Args += $CodeQLAdditionalRunConfigParams - } - 'binskim' { - if ($targetDirectory) { - # Binskim crashes due to specific PDBs. GitHub issue: https://github.com/microsoft/binskim/issues/924. - # We are excluding all `_.pdb` files from the scan. - $tool.Args += "`"Target < $TargetDirectory\**;-:file|$TargetDirectory\**\_.pdb`"" - } - $tool.Args += $BinskimAdditionalRunConfigParams - } - } - - # Create variable pointing to the args array directly so we can use splat syntax later. - $toolArgs = $tool.Args - - # Configure the tool. If args array is provided or the current tool has some default arguments - # defined, add "--args" and splat each element on the end. Arg format is "{Arg id} < {Value}", - # one per parameter. Doc page for "guardian configure": - # https://dev.azure.com/securitytools/SecurityIntegration/_wiki/wikis/Guardian/1395/configure - Exec-BlockVerbosely { - & $GuardianCliLocation configure ` - --working-directory $WorkingDirectory ` - --tool $tool.Name ` - --output-path $gdnConfigFile ` - --logger-level $GuardianLoggerLevel ` - --noninteractive ` - --force ` - $(if ($toolArgs) { "--args" }) @toolArgs - Exit-IfNZEC "Sdl" - } - - Write-Host "Created '$toolConfigName' configuration file: $gdnConfigFile" - } -} -catch { - Write-Host $_.ScriptStackTrace - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ - ExitWithExitCode 1 -} diff --git a/eng/common/sdl/execute-all-sdl-tools.ps1 b/eng/common/sdl/execute-all-sdl-tools.ps1 deleted file mode 100644 index 4715d75e974d..000000000000 --- a/eng/common/sdl/execute-all-sdl-tools.ps1 +++ /dev/null @@ -1,167 +0,0 @@ -Param( - [string] $GuardianPackageName, # Required: the name of guardian CLI package (not needed if GuardianCliLocation is specified) - [string] $NugetPackageDirectory, # Required: directory where NuGet packages are installed (not needed if GuardianCliLocation is specified) - [string] $GuardianCliLocation, # Optional: Direct location of Guardian CLI executable if GuardianPackageName & NugetPackageDirectory are not specified - [string] $Repository=$env:BUILD_REPOSITORY_NAME, # Required: the name of the repository (e.g. dotnet/arcade) - [string] $BranchName=$env:BUILD_SOURCEBRANCH, # Optional: name of branch or version of gdn settings; defaults to master - [string] $SourceDirectory=$env:BUILD_SOURCESDIRECTORY, # Required: the directory where source files are located - [string] $ArtifactsDirectory = (Join-Path $env:BUILD_ARTIFACTSTAGINGDIRECTORY ('artifacts')), # Required: the directory where build artifacts are located - [string] $AzureDevOpsAccessToken, # Required: access token for dnceng; should be provided via KeyVault - - # Optional: list of SDL tools to run on source code. See 'configure-sdl-tool.ps1' for tools list - # format. - [object[]] $SourceToolsList, - # Optional: list of SDL tools to run on built artifacts. See 'configure-sdl-tool.ps1' for tools - # list format. - [object[]] $ArtifactToolsList, - # Optional: list of SDL tools to run without automatically specifying a target directory. See - # 'configure-sdl-tool.ps1' for tools list format. - [object[]] $CustomToolsList, - - [bool] $TsaPublish=$False, # Optional: true will publish results to TSA; only set to true after onboarding to TSA; TSA is the automated framework used to upload test results as bugs. - [string] $TsaBranchName=$env:BUILD_SOURCEBRANCH, # Optional: required for TSA publish; defaults to $(Build.SourceBranchName); TSA is the automated framework used to upload test results as bugs. - [string] $TsaRepositoryName=$env:BUILD_REPOSITORY_NAME, # Optional: TSA repository name; will be generated automatically if not submitted; TSA is the automated framework used to upload test results as bugs. - [string] $BuildNumber=$env:BUILD_BUILDNUMBER, # Optional: required for TSA publish; defaults to $(Build.BuildNumber) - [bool] $UpdateBaseline=$False, # Optional: if true, will update the baseline in the repository; should only be run after fixing any issues which need to be fixed - [bool] $TsaOnboard=$False, # Optional: if true, will onboard the repository to TSA; should only be run once; TSA is the automated framework used to upload test results as bugs. - [string] $TsaInstanceUrl, # Optional: only needed if TsaOnboard or TsaPublish is true; the instance-url registered with TSA; TSA is the automated framework used to upload test results as bugs. - [string] $TsaCodebaseName, # Optional: only needed if TsaOnboard or TsaPublish is true; the name of the codebase registered with TSA; TSA is the automated framework used to upload test results as bugs. - [string] $TsaProjectName, # Optional: only needed if TsaOnboard or TsaPublish is true; the name of the project registered with TSA; TSA is the automated framework used to upload test results as bugs. - [string] $TsaNotificationEmail, # Optional: only needed if TsaOnboard is true; the email(s) which will receive notifications of TSA bug filings (e.g. alias@microsoft.com); TSA is the automated framework used to upload test results as bugs. - [string] $TsaCodebaseAdmin, # Optional: only needed if TsaOnboard is true; the aliases which are admins of the TSA codebase (e.g. DOMAIN\alias); TSA is the automated framework used to upload test results as bugs. - [string] $TsaBugAreaPath, # Optional: only needed if TsaOnboard is true; the area path where TSA will file bugs in AzDO; TSA is the automated framework used to upload test results as bugs. - [string] $TsaIterationPath, # Optional: only needed if TsaOnboard is true; the iteration path where TSA will file bugs in AzDO; TSA is the automated framework used to upload test results as bugs. - [string] $GuardianLoggerLevel='Standard', # Optional: the logger level for the Guardian CLI; options are Trace, Verbose, Standard, Warning, and Error - [string[]] $CrScanAdditionalRunConfigParams, # Optional: Additional Params to custom build a CredScan run config in the format @("xyz:abc","sdf:1") - [string[]] $PoliCheckAdditionalRunConfigParams, # Optional: Additional Params to custom build a Policheck run config in the format @("xyz:abc","sdf:1") - [string[]] $CodeQLAdditionalRunConfigParams, # Optional: Additional Params to custom build a Semmle/CodeQL run config in the format @("xyz < abc","sdf < 1") - [string[]] $BinskimAdditionalRunConfigParams, # Optional: Additional Params to custom build a Binskim run config in the format @("xyz < abc","sdf < 1") - [bool] $BreakOnFailure=$False # Optional: Fail the build if there were errors during the run -) - -try { - $ErrorActionPreference = 'Stop' - Set-StrictMode -Version 2.0 - $disableConfigureToolsetImport = $true - $global:LASTEXITCODE = 0 - - # `tools.ps1` checks $ci to perform some actions. Since the SDL - # scripts don't necessarily execute in the same agent that run the - # build.ps1/sh script this variable isn't automatically set. - $ci = $true - . $PSScriptRoot\..\tools.ps1 - - #Replace repo names to the format of org/repo - if (!($Repository.contains('/'))) { - $RepoName = $Repository -replace '(.*?)-(.*)', '$1/$2'; - } - else{ - $RepoName = $Repository; - } - - if ($GuardianPackageName) { - $guardianCliLocation = Join-Path $NugetPackageDirectory (Join-Path $GuardianPackageName (Join-Path 'tools' 'guardian.cmd')) - } else { - $guardianCliLocation = $GuardianCliLocation - } - - $workingDirectory = (Split-Path $SourceDirectory -Parent) - $ValidPath = Test-Path $guardianCliLocation - - if ($ValidPath -eq $False) - { - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message 'Invalid Guardian CLI Location.' - ExitWithExitCode 1 - } - - Exec-BlockVerbosely { - & $(Join-Path $PSScriptRoot 'init-sdl.ps1') -GuardianCliLocation $guardianCliLocation -Repository $RepoName -BranchName $BranchName -WorkingDirectory $workingDirectory -AzureDevOpsAccessToken $AzureDevOpsAccessToken -GuardianLoggerLevel $GuardianLoggerLevel - } - $gdnFolder = Join-Path $workingDirectory '.gdn' - - if ($TsaOnboard) { - if ($TsaCodebaseName -and $TsaNotificationEmail -and $TsaCodebaseAdmin -and $TsaBugAreaPath) { - Exec-BlockVerbosely { - & $guardianCliLocation tsa-onboard --codebase-name "$TsaCodebaseName" --notification-alias "$TsaNotificationEmail" --codebase-admin "$TsaCodebaseAdmin" --instance-url "$TsaInstanceUrl" --project-name "$TsaProjectName" --area-path "$TsaBugAreaPath" --iteration-path "$TsaIterationPath" --working-directory $workingDirectory --logger-level $GuardianLoggerLevel - } - if ($LASTEXITCODE -ne 0) { - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message "Guardian tsa-onboard failed with exit code $LASTEXITCODE." - ExitWithExitCode $LASTEXITCODE - } - } else { - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message 'Could not onboard to TSA -- not all required values ($TsaCodebaseName, $TsaNotificationEmail, $TsaCodebaseAdmin, $TsaBugAreaPath) were specified.' - ExitWithExitCode 1 - } - } - - # Configure a list of tools with a default target directory. Populates the ".gdn/r" directory. - function Configure-ToolsList([object[]] $tools, [string] $targetDirectory) { - if ($tools -and $tools.Count -gt 0) { - Exec-BlockVerbosely { - & $(Join-Path $PSScriptRoot 'configure-sdl-tool.ps1') ` - -GuardianCliLocation $guardianCliLocation ` - -WorkingDirectory $workingDirectory ` - -TargetDirectory $targetDirectory ` - -GdnFolder $gdnFolder ` - -ToolsList $tools ` - -AzureDevOpsAccessToken $AzureDevOpsAccessToken ` - -GuardianLoggerLevel $GuardianLoggerLevel ` - -CrScanAdditionalRunConfigParams $CrScanAdditionalRunConfigParams ` - -PoliCheckAdditionalRunConfigParams $PoliCheckAdditionalRunConfigParams ` - -CodeQLAdditionalRunConfigParams $CodeQLAdditionalRunConfigParams ` - -BinskimAdditionalRunConfigParams $BinskimAdditionalRunConfigParams - if ($BreakOnFailure) { - Exit-IfNZEC "Sdl" - } - } - } - } - - # Configure Artifact and Source tools with default Target directories. - Configure-ToolsList $ArtifactToolsList $ArtifactsDirectory - Configure-ToolsList $SourceToolsList $SourceDirectory - # Configure custom tools with no default Target directory. - Configure-ToolsList $CustomToolsList $null - - # At this point, all tools are configured in the ".gdn" directory. Run them all in a single call. - # (If we used "run" multiple times, each run would overwrite data from earlier runs.) - Exec-BlockVerbosely { - & $(Join-Path $PSScriptRoot 'run-sdl.ps1') ` - -GuardianCliLocation $guardianCliLocation ` - -WorkingDirectory $SourceDirectory ` - -UpdateBaseline $UpdateBaseline ` - -GdnFolder $gdnFolder - } - - if ($TsaPublish) { - if ($TsaBranchName -and $BuildNumber) { - if (-not $TsaRepositoryName) { - $TsaRepositoryName = "$($Repository)-$($BranchName)" - } - Exec-BlockVerbosely { - & $guardianCliLocation tsa-publish --all-tools --repository-name "$TsaRepositoryName" --branch-name "$TsaBranchName" --build-number "$BuildNumber" --onboard $True --codebase-name "$TsaCodebaseName" --notification-alias "$TsaNotificationEmail" --codebase-admin "$TsaCodebaseAdmin" --instance-url "$TsaInstanceUrl" --project-name "$TsaProjectName" --area-path "$TsaBugAreaPath" --iteration-path "$TsaIterationPath" --working-directory $workingDirectory --logger-level $GuardianLoggerLevel - } - if ($LASTEXITCODE -ne 0) { - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message "Guardian tsa-publish failed with exit code $LASTEXITCODE." - ExitWithExitCode $LASTEXITCODE - } - } else { - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message 'Could not publish to TSA -- not all required values ($TsaBranchName, $BuildNumber) were specified.' - ExitWithExitCode 1 - } - } - - if ($BreakOnFailure) { - Write-Host "Failing the build in case of breaking results..." - Exec-BlockVerbosely { - & $guardianCliLocation break --working-directory $workingDirectory --logger-level $GuardianLoggerLevel - } - } else { - Write-Host "Letting the build pass even if there were breaking results..." - } -} -catch { - Write-Host $_.ScriptStackTrace - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ - exit 1 -} diff --git a/eng/common/sdl/extract-artifact-archives.ps1 b/eng/common/sdl/extract-artifact-archives.ps1 deleted file mode 100644 index 68da4fbf2571..000000000000 --- a/eng/common/sdl/extract-artifact-archives.ps1 +++ /dev/null @@ -1,63 +0,0 @@ -# This script looks for each archive file in a directory and extracts it into the target directory. -# For example, the file "$InputPath/bin.tar.gz" extracts to "$ExtractPath/bin.tar.gz.extracted/**". -# Uses the "tar" utility added to Windows 10 / Windows 2019 that supports tar.gz and zip. -param( - # Full path to directory where archives are stored. - [Parameter(Mandatory=$true)][string] $InputPath, - # Full path to directory to extract archives into. May be the same as $InputPath. - [Parameter(Mandatory=$true)][string] $ExtractPath -) - -$ErrorActionPreference = 'Stop' -Set-StrictMode -Version 2.0 - -$disableConfigureToolsetImport = $true - -try { - # `tools.ps1` checks $ci to perform some actions. Since the SDL - # scripts don't necessarily execute in the same agent that run the - # build.ps1/sh script this variable isn't automatically set. - $ci = $true - . $PSScriptRoot\..\tools.ps1 - - Measure-Command { - $jobs = @() - - # Find archive files for non-Windows and Windows builds. - $archiveFiles = @( - Get-ChildItem (Join-Path $InputPath "*.tar.gz") - Get-ChildItem (Join-Path $InputPath "*.zip") - ) - - foreach ($targzFile in $archiveFiles) { - $jobs += Start-Job -ScriptBlock { - $file = $using:targzFile - $fileName = [System.IO.Path]::GetFileName($file) - $extractDir = Join-Path $using:ExtractPath "$fileName.extracted" - - New-Item $extractDir -ItemType Directory -Force | Out-Null - - Write-Host "Extracting '$file' to '$extractDir'..." - - # Pipe errors to stdout to prevent PowerShell detecting them and quitting the job early. - # This type of quit skips the catch, so we wouldn't be able to tell which file triggered the - # error. Save output so it can be stored in the exception string along with context. - $output = tar -xf $file -C $extractDir 2>&1 - # Handle NZEC manually rather than using Exit-IfNZEC: we are in a background job, so we - # don't have access to the outer scope. - if ($LASTEXITCODE -ne 0) { - throw "Error extracting '$file': non-zero exit code ($LASTEXITCODE). Output: '$output'" - } - - Write-Host "Extracted to $extractDir" - } - } - - Receive-Job $jobs -Wait - } -} -catch { - Write-Host $_ - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ - ExitWithExitCode 1 -} diff --git a/eng/common/sdl/extract-artifact-packages.ps1 b/eng/common/sdl/extract-artifact-packages.ps1 deleted file mode 100644 index f031ed5b25e9..000000000000 --- a/eng/common/sdl/extract-artifact-packages.ps1 +++ /dev/null @@ -1,82 +0,0 @@ -param( - [Parameter(Mandatory=$true)][string] $InputPath, # Full path to directory where artifact packages are stored - [Parameter(Mandatory=$true)][string] $ExtractPath # Full path to directory where the packages will be extracted -) - -$ErrorActionPreference = 'Stop' -Set-StrictMode -Version 2.0 - -$disableConfigureToolsetImport = $true - -function ExtractArtifacts { - if (!(Test-Path $InputPath)) { - Write-Host "Input Path does not exist: $InputPath" - ExitWithExitCode 0 - } - $Jobs = @() - Get-ChildItem "$InputPath\*.nupkg" | - ForEach-Object { - $Jobs += Start-Job -ScriptBlock $ExtractPackage -ArgumentList $_.FullName - } - - foreach ($Job in $Jobs) { - Wait-Job -Id $Job.Id | Receive-Job - } -} - -try { - # `tools.ps1` checks $ci to perform some actions. Since the SDL - # scripts don't necessarily execute in the same agent that run the - # build.ps1/sh script this variable isn't automatically set. - $ci = $true - . $PSScriptRoot\..\tools.ps1 - - $ExtractPackage = { - param( - [string] $PackagePath # Full path to a NuGet package - ) - - if (!(Test-Path $PackagePath)) { - Write-PipelineTelemetryError -Category 'Build' -Message "Input file does not exist: $PackagePath" - ExitWithExitCode 1 - } - - $RelevantExtensions = @('.dll', '.exe', '.pdb') - Write-Host -NoNewLine 'Extracting ' ([System.IO.Path]::GetFileName($PackagePath)) '...' - - $PackageId = [System.IO.Path]::GetFileNameWithoutExtension($PackagePath) - $ExtractPath = Join-Path -Path $using:ExtractPath -ChildPath $PackageId - - Add-Type -AssemblyName System.IO.Compression.FileSystem - - [System.IO.Directory]::CreateDirectory($ExtractPath); - - try { - $zip = [System.IO.Compression.ZipFile]::OpenRead($PackagePath) - - $zip.Entries | - Where-Object {$RelevantExtensions -contains [System.IO.Path]::GetExtension($_.Name)} | - ForEach-Object { - $TargetPath = Join-Path -Path $ExtractPath -ChildPath (Split-Path -Path $_.FullName) - [System.IO.Directory]::CreateDirectory($TargetPath); - - $TargetFile = Join-Path -Path $ExtractPath -ChildPath $_.FullName - [System.IO.Compression.ZipFileExtensions]::ExtractToFile($_, $TargetFile) - } - } - catch { - Write-Host $_ - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ - ExitWithExitCode 1 - } - finally { - $zip.Dispose() - } - } - Measure-Command { ExtractArtifacts } -} -catch { - Write-Host $_ - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ - ExitWithExitCode 1 -} diff --git a/eng/common/sdl/init-sdl.ps1 b/eng/common/sdl/init-sdl.ps1 deleted file mode 100644 index 3ac1d92b3700..000000000000 --- a/eng/common/sdl/init-sdl.ps1 +++ /dev/null @@ -1,55 +0,0 @@ -Param( - [string] $GuardianCliLocation, - [string] $Repository, - [string] $BranchName='master', - [string] $WorkingDirectory, - [string] $AzureDevOpsAccessToken, - [string] $GuardianLoggerLevel='Standard' -) - -$ErrorActionPreference = 'Stop' -Set-StrictMode -Version 2.0 -$disableConfigureToolsetImport = $true -$global:LASTEXITCODE = 0 - -# `tools.ps1` checks $ci to perform some actions. Since the SDL -# scripts don't necessarily execute in the same agent that run the -# build.ps1/sh script this variable isn't automatically set. -$ci = $true -. $PSScriptRoot\..\tools.ps1 - -# Don't display the console progress UI - it's a huge perf hit -$ProgressPreference = 'SilentlyContinue' - -# Construct basic auth from AzDO access token; construct URI to the repository's gdn folder stored in that repository; construct location of zip file -$encodedPat = [Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$AzureDevOpsAccessToken")) -$escapedRepository = [Uri]::EscapeDataString("/$Repository/$BranchName/.gdn") -$uri = "https://dev.azure.com/dnceng/internal/_apis/git/repositories/sdl-tool-cfg/Items?path=$escapedRepository&versionDescriptor[versionOptions]=0&`$format=zip&api-version=5.0" -$zipFile = "$WorkingDirectory/gdn.zip" - -Add-Type -AssemblyName System.IO.Compression.FileSystem -$gdnFolder = (Join-Path $WorkingDirectory '.gdn') - -try { - # if the folder does not exist, we'll do a guardian init and push it to the remote repository - Write-Host 'Initializing Guardian...' - Write-Host "$GuardianCliLocation init --working-directory $WorkingDirectory --logger-level $GuardianLoggerLevel" - & $GuardianCliLocation init --working-directory $WorkingDirectory --logger-level $GuardianLoggerLevel - if ($LASTEXITCODE -ne 0) { - Write-PipelineTelemetryError -Force -Category 'Build' -Message "Guardian init failed with exit code $LASTEXITCODE." - ExitWithExitCode $LASTEXITCODE - } - # We create the mainbaseline so it can be edited later - Write-Host "$GuardianCliLocation baseline --working-directory $WorkingDirectory --name mainbaseline" - & $GuardianCliLocation baseline --working-directory $WorkingDirectory --name mainbaseline - if ($LASTEXITCODE -ne 0) { - Write-PipelineTelemetryError -Force -Category 'Build' -Message "Guardian baseline failed with exit code $LASTEXITCODE." - ExitWithExitCode $LASTEXITCODE - } - ExitWithExitCode 0 -} -catch { - Write-Host $_.ScriptStackTrace - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ - ExitWithExitCode 1 -} diff --git a/eng/common/sdl/packages.config b/eng/common/sdl/packages.config deleted file mode 100644 index e5f543ea68c2..000000000000 --- a/eng/common/sdl/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/eng/common/sdl/run-sdl.ps1 b/eng/common/sdl/run-sdl.ps1 deleted file mode 100644 index 2eac8c78f103..000000000000 --- a/eng/common/sdl/run-sdl.ps1 +++ /dev/null @@ -1,49 +0,0 @@ -Param( - [string] $GuardianCliLocation, - [string] $WorkingDirectory, - [string] $GdnFolder, - [string] $UpdateBaseline, - [string] $GuardianLoggerLevel='Standard' -) - -$ErrorActionPreference = 'Stop' -Set-StrictMode -Version 2.0 -$disableConfigureToolsetImport = $true -$global:LASTEXITCODE = 0 - -try { - # `tools.ps1` checks $ci to perform some actions. Since the SDL - # scripts don't necessarily execute in the same agent that run the - # build.ps1/sh script this variable isn't automatically set. - $ci = $true - . $PSScriptRoot\..\tools.ps1 - - # We store config files in the r directory of .gdn - $gdnConfigPath = Join-Path $GdnFolder 'r' - $ValidPath = Test-Path $GuardianCliLocation - - if ($ValidPath -eq $False) - { - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message "Invalid Guardian CLI Location." - ExitWithExitCode 1 - } - - $gdnConfigFiles = Get-ChildItem $gdnConfigPath -Recurse -Include '*.gdnconfig' - Write-Host "Discovered Guardian config files:" - $gdnConfigFiles | Out-String | Write-Host - - Exec-BlockVerbosely { - & $GuardianCliLocation run ` - --working-directory $WorkingDirectory ` - --baseline mainbaseline ` - --update-baseline $UpdateBaseline ` - --logger-level $GuardianLoggerLevel ` - --config @gdnConfigFiles - Exit-IfNZEC "Sdl" - } -} -catch { - Write-Host $_.ScriptStackTrace - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ - ExitWithExitCode 1 -} diff --git a/eng/common/sdl/sdl.ps1 b/eng/common/sdl/sdl.ps1 deleted file mode 100644 index 648c5068d7d6..000000000000 --- a/eng/common/sdl/sdl.ps1 +++ /dev/null @@ -1,38 +0,0 @@ - -function Install-Gdn { - param( - [Parameter(Mandatory=$true)] - [string]$Path, - - # If omitted, install the latest version of Guardian, otherwise install that specific version. - [string]$Version - ) - - $ErrorActionPreference = 'Stop' - Set-StrictMode -Version 2.0 - $disableConfigureToolsetImport = $true - $global:LASTEXITCODE = 0 - - # `tools.ps1` checks $ci to perform some actions. Since the SDL - # scripts don't necessarily execute in the same agent that run the - # build.ps1/sh script this variable isn't automatically set. - $ci = $true - . $PSScriptRoot\..\tools.ps1 - - $argumentList = @("install", "Microsoft.Guardian.Cli", "-Source https://securitytools.pkgs.visualstudio.com/_packaging/Guardian/nuget/v3/index.json", "-OutputDirectory $Path", "-NonInteractive", "-NoCache") - - if ($Version) { - $argumentList += "-Version $Version" - } - - Start-Process nuget -Verbose -ArgumentList $argumentList -NoNewWindow -Wait - - $gdnCliPath = Get-ChildItem -Filter guardian.cmd -Recurse -Path $Path - - if (!$gdnCliPath) - { - Write-PipelineTelemetryError -Category 'Sdl' -Message 'Failure installing Guardian' - } - - return $gdnCliPath.FullName -} \ No newline at end of file diff --git a/eng/common/sdl/trim-assets-version.ps1 b/eng/common/sdl/trim-assets-version.ps1 deleted file mode 100644 index 0daa2a9e9462..000000000000 --- a/eng/common/sdl/trim-assets-version.ps1 +++ /dev/null @@ -1,75 +0,0 @@ -<# -.SYNOPSIS -Install and run the 'Microsoft.DotNet.VersionTools.Cli' tool with the 'trim-artifacts-version' command to trim the version from the NuGet assets file name. - -.PARAMETER InputPath -Full path to directory where artifact packages are stored - -.PARAMETER Recursive -Search for NuGet packages recursively - -#> - -Param( - [string] $InputPath, - [bool] $Recursive = $true -) - -$CliToolName = "Microsoft.DotNet.VersionTools.Cli" - -function Install-VersionTools-Cli { - param( - [Parameter(Mandatory=$true)][string]$Version - ) - - Write-Host "Installing the package '$CliToolName' with a version of '$version' ..." - $feed = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" - - $argumentList = @("tool", "install", "--local", "$CliToolName", "--add-source $feed", "--no-cache", "--version $Version", "--create-manifest-if-needed") - Start-Process "$dotnet" -Verbose -ArgumentList $argumentList -NoNewWindow -Wait -} - -# ------------------------------------------------------------------- - -if (!(Test-Path $InputPath)) { - Write-Host "Input Path '$InputPath' does not exist" - ExitWithExitCode 1 -} - -$ErrorActionPreference = 'Stop' -Set-StrictMode -Version 2.0 - -$disableConfigureToolsetImport = $true -$global:LASTEXITCODE = 0 - -# `tools.ps1` checks $ci to perform some actions. Since the SDL -# scripts don't necessarily execute in the same agent that run the -# build.ps1/sh script this variable isn't automatically set. -$ci = $true -. $PSScriptRoot\..\tools.ps1 - -try { - $dotnetRoot = InitializeDotNetCli -install:$true - $dotnet = "$dotnetRoot\dotnet.exe" - - $toolsetVersion = Read-ArcadeSdkVersion - Install-VersionTools-Cli -Version $toolsetVersion - - $cliToolFound = (& "$dotnet" tool list --local | Where-Object {$_.Split(' ')[0] -eq $CliToolName}) - if ($null -eq $cliToolFound) { - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message "The '$CliToolName' tool is not installed." - ExitWithExitCode 1 - } - - Exec-BlockVerbosely { - & "$dotnet" $CliToolName trim-assets-version ` - --assets-path $InputPath ` - --recursive $Recursive - Exit-IfNZEC "Sdl" - } -} -catch { - Write-Host $_ - Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ - ExitWithExitCode 1 -} diff --git a/eng/common/template-guidance.md b/eng/common/template-guidance.md index 4bf4cf41bd7c..cdc62e72b077 100644 --- a/eng/common/template-guidance.md +++ b/eng/common/template-guidance.md @@ -71,7 +71,6 @@ eng\common\ source-build.yml (shim) source-index-stage1.yml (shim) jobs\ - codeql-build.yml (shim) jobs.yml (shim) source-build.yml (shim) post-build\ @@ -89,7 +88,6 @@ eng\common\ source-build.yml (shim) variables\ pool-providers.yml (logic + redirect) # templates/variables/pool-providers.yml will redirect to templates-official/variables/pool-providers.yml if you are running in the internal project - sdl-variables.yml (logic) core-templates\ job\ job.yml (logic) @@ -98,7 +96,6 @@ eng\common\ source-build.yml (logic) source-index-stage1.yml (logic) jobs\ - codeql-build.yml (logic) jobs.yml (logic) source-build.yml (logic) post-build\ diff --git a/eng/common/templates-official/jobs/codeql-build.yml b/eng/common/templates-official/jobs/codeql-build.yml deleted file mode 100644 index a726322ecfe0..000000000000 --- a/eng/common/templates-official/jobs/codeql-build.yml +++ /dev/null @@ -1,7 +0,0 @@ -jobs: -- template: /eng/common/core-templates/jobs/codeql-build.yml - parameters: - is1ESPipeline: true - - ${{ each parameter in parameters }}: - ${{ parameter.key }}: ${{ parameter.value }} diff --git a/eng/common/templates-official/variables/sdl-variables.yml b/eng/common/templates-official/variables/sdl-variables.yml deleted file mode 100644 index f1311bbb1b33..000000000000 --- a/eng/common/templates-official/variables/sdl-variables.yml +++ /dev/null @@ -1,7 +0,0 @@ -variables: -# The Guardian version specified in 'eng/common/sdl/packages.config'. This value must be kept in -# sync with the packages.config file. -- name: DefaultGuardianVersion - value: 0.109.0 -- name: GuardianPackagesConfigFile - value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config \ No newline at end of file diff --git a/eng/common/templates/jobs/codeql-build.yml b/eng/common/templates/jobs/codeql-build.yml deleted file mode 100644 index 517f24d6a52c..000000000000 --- a/eng/common/templates/jobs/codeql-build.yml +++ /dev/null @@ -1,7 +0,0 @@ -jobs: -- template: /eng/common/core-templates/jobs/codeql-build.yml - parameters: - is1ESPipeline: false - - ${{ each parameter in parameters }}: - ${{ parameter.key }}: ${{ parameter.value }} diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 01296ee601dc..c96f5018fe43 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -34,6 +34,9 @@ # Configures warning treatment in msbuild. [bool]$warnAsError = if (Test-Path variable:warnAsError) { $warnAsError } else { $true } +# Specifies semi-colon delimited list of warning codes that should not be treated as errors. +[string]$warnNotAsError = if (Test-Path variable:warnNotAsError) { $warnNotAsError } else { '' } + # Specifies which msbuild engine to use for build: 'vs', 'dotnet' or unspecified (determined based on presence of tools.vs in global.json). [string]$msbuildEngine = if (Test-Path variable:msbuildEngine) { $msbuildEngine } else { $null } @@ -295,6 +298,8 @@ function InstallDotNet([string] $dotnetRoot, $dotnetVersionLabel = "'sdk v$version'" + # For performance this check is duplicated in src/Microsoft.DotNet.Arcade.Sdk/src/InstallDotNetCore.cs + # if you are making changes here, consider if you need to make changes there as well. if ($runtime -ne '' -and $runtime -ne 'sdk') { $runtimePath = $dotnetRoot $runtimePath = $runtimePath + "\shared" @@ -837,6 +842,10 @@ function MSBuild-Core() { $cmdArgs += ' /p:TreatWarningsAsErrors=false' } + if ($warnNotAsError) { + $cmdArgs += " /warnnotaserror:$warnNotAsError /p:AdditionalWarningsNotAsErrors=$warnNotAsError" + } + foreach ($arg in $args) { if ($null -ne $arg -and $arg.Trim() -ne "") { if ($arg.EndsWith('\')) { diff --git a/eng/common/tools.sh b/eng/common/tools.sh index edc7b128cf65..a6e0ed594fda 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -52,6 +52,9 @@ fi # Configures warning treatment in msbuild. warn_as_error=${warn_as_error:-true} +# Specifies semi-colon delimited list of warning codes that should not be treated as errors. +warn_not_as_error=${warn_not_as_error:-''} + # True to attempt using .NET Core already that meets requirements specified in global.json # installed on the machine instead of downloading one. use_installed_dotnet_cli=${use_installed_dotnet_cli:-true} @@ -184,6 +187,8 @@ function InstallDotNet { local version=$2 local runtime=$4 + # For performance this check is duplicated in src/Microsoft.DotNet.Arcade.Sdk/src/InstallDotNetCore.cs + # if you are making changes here, consider if you need to make changes there as well. local dotnetVersionLabel="'$runtime v$version'" if [[ -n "${4:-}" ]] && [ "$4" != 'sdk' ]; then runtimePath="$root" @@ -528,7 +533,12 @@ function MSBuild-Core { mt_switch="-mt" fi - RunBuildTool "$_InitializeBuildToolCommand" /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch $mt_switch /p:TreatWarningsAsErrors=$warn_as_error /p:ContinuousIntegrationBuild=$ci "$@" + local warnnotaserror_switch="" + if [[ -n "$warn_not_as_error" ]]; then + warnnotaserror_switch="/warnnotaserror:$warn_not_as_error /p:AdditionalWarningsNotAsErrors=$warn_not_as_error" + fi + + RunBuildTool "$_InitializeBuildToolCommand" /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch $mt_switch $warnnotaserror_switch /p:TreatWarningsAsErrors=$warn_as_error /p:ContinuousIntegrationBuild=$ci "$@" } function GetDarc { diff --git a/global.json b/global.json index 22b6bc9c2759..49b3f00f5b1d 100644 --- a/global.json +++ b/global.json @@ -7,7 +7,7 @@ "errorMessage": "The .NET SDK is not installed or is not configured correctly. Please run ./build to install the correct SDK version locally." }, "tools": { - "dotnet": "11.0.100-preview.1.26104.118", + "dotnet": "11.0.100-preview.3.26170.106", "runtimes": { "dotnet": [ "$(MicrosoftNETCorePlatformsPackageVersion)" @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26153.117", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26153.117", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26176.106", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26176.106", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 5b7ad7e44aa2226171ca125e7e5f27e6a873d15b Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Wed, 11 Mar 2026 11:32:58 +0800 Subject: [PATCH 03/14] Update baselines (cherry picked from commit 2fbadcb1b0c3727c8f877ed288a2ae688c1969ef) --- ...ootJsonManifest.Build.staticwebassets.json | 175 ------------------ ...duleTargetPaths.Build.staticwebassets.json | 175 ------------------ ...Assets_BuildMinimal_Works.Build.files.json | 4 - ...ldMinimal_Works.Build.staticwebassets.json | 175 ------------------ ...Assets_Build_Hosted_Works.Build.files.json | 2 - ...ld_Hosted_Works.Build.staticwebassets.json | 175 ------------------ test/TestPackages/cgmanifest.json | 45 +++++ 7 files changed, 45 insertions(+), 706 deletions(-) diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json index 58d400551cd1..957c98679c27 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json @@ -1580,29 +1580,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Zstandard.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", "SourceId": "blazorwasm-minimal", @@ -6387,29 +6364,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Zstandard.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "SourceId": "blazorwasm-minimal", @@ -12286,43 +12240,6 @@ } ] }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, { "Route": "_framework/System.IO.Compression.wasm", "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", @@ -23838,98 +23755,6 @@ } ] }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" - } - ] - }, { "Route": "_framework/System.IO.Compression.wasm.gz", "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json index d8b68f6116b4..b70ed50747e0 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json @@ -1702,29 +1702,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Zstandard.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", "SourceId": "blazorwasm", @@ -6578,29 +6555,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Zstandard.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "SourceId": "blazorwasm", @@ -12933,43 +12887,6 @@ } ] }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, { "Route": "_framework/System.IO.Compression.wasm", "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", @@ -24761,98 +24678,6 @@ } ] }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" - } - ] - }, { "Route": "_framework/System.IO.Compression.wasm.gz", "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json index d1c093b08b74..f4ee3f0e961f 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json @@ -67,7 +67,6 @@ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", @@ -276,7 +275,6 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", @@ -557,8 +555,6 @@ "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm.gz", - "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm.gz", "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.wasm", "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.wasm.gz", "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json index b10a15271297..7850e1b62294 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json @@ -1580,29 +1580,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Zstandard.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", "SourceId": "blazorwasm-minimal", @@ -6387,29 +6364,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Zstandard.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "SourceId": "blazorwasm-minimal", @@ -12378,43 +12332,6 @@ } ] }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, { "Route": "_framework/System.IO.Compression.wasm", "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", @@ -23930,98 +23847,6 @@ } ] }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" - } - ] - }, { "Route": "_framework/System.IO.Compression.wasm.gz", "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json index 3f2795d9bd94..2aa141665f1c 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json @@ -141,8 +141,6 @@ "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm.gz", - "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm.gz", "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.wasm", "${OutputPath}\\wwwroot\\_framework\\System.IO.Compression.wasm.gz", "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json index a8b8cff63e0b..836bc8cebda0 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json @@ -1702,29 +1702,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Zstandard.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", "SourceId": "blazorwasm", @@ -6578,29 +6555,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", - "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Zstandard.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "SourceId": "blazorwasm", @@ -12841,43 +12795,6 @@ } ] }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Zstandard.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, { "Route": "_framework/System.IO.Compression.wasm", "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", @@ -24669,98 +24586,6 @@ } ] }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.Compression.Zstandard.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Zstandard.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" - } - ] - }, { "Route": "_framework/System.IO.Compression.wasm.gz", "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", diff --git a/test/TestPackages/cgmanifest.json b/test/TestPackages/cgmanifest.json index f1270129b63a..cfd88d5b4165 100644 --- a/test/TestPackages/cgmanifest.json +++ b/test/TestPackages/cgmanifest.json @@ -55,6 +55,51 @@ "version": "4.0.2" } } + }, + { + "component": { + "type": "nuget", + "nuget": { + "name": "Microsoft.NET.Test.Sdk", + "version": "17.14.1" + } + } + }, + { + "component": { + "type": "nuget", + "nuget": { + "name": "xunit", + "version": "2.9.3" + } + } + }, + { + "component": { + "type": "nuget", + "nuget": { + "name": "xunit.runner.visualstudio", + "version": "3.1.4" + } + } + }, + { + "component": { + "type": "nuget", + "nuget": { + "name": "Microsoft.Playwright.NUnit", + "version": "1.52.0" + } + } + }, + { + "component": { + "type": "nuget", + "nuget": { + "name": "Microsoft.Playwright.MSTest.v4", + "version": "1.55.0" + } + } } ] } \ No newline at end of file From 71f48db21311e08aea828a960872ec2519d0df0e Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Mar 2026 09:02:55 +0100 Subject: [PATCH 04/14] Fix nullability compiler errors from NuGet 7.6 API changes (#53489) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ViktorHofer <7412651+ViktorHofer@users.noreply.github.com> (cherry picked from commit 83d346cfa9ce8db27022a753794184094fff2be7) --- .../TemplatePackageCoordinatorTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs index 5a52b144d6e4..071819dcf72f 100644 --- a/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs +++ b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs @@ -84,7 +84,7 @@ public void DisplayNuGetPackageMetadata() A.CallTo(() => searchMetadata.ProjectUrl).Returns(new Uri("http://github.com")); A.CallTo(() => searchMetadata.LicenseUrl).Returns(new Uri("https://github.com/dotnet/sdk")); A.CallTo(() => searchMetadata.LicenseMetadata).Returns(licenseMetadata); - A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression!.ToString()).Returns("MIT"); + A.CallTo(() => searchMetadata.LicenseMetadata!.LicenseExpression!.ToString()).Returns("MIT"); var extraMetadata = A.Fake(); A.CallTo(() => extraMetadata.Owners).Returns("packageOwner"); @@ -130,7 +130,7 @@ public void DisplayNuGetPackageMetadata_PrefixReserved() A.CallTo(() => searchMetadata.ProjectUrl).Returns(new Uri("http://github.com")); A.CallTo(() => searchMetadata.LicenseUrl).Returns(new Uri("https://github.com/dotnet/sdk")); A.CallTo(() => searchMetadata.LicenseMetadata).Returns(licenseMetadata); - A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression!.ToString()).Returns("MIT"); + A.CallTo(() => searchMetadata.LicenseMetadata!.LicenseExpression!.ToString()).Returns("MIT"); var extraMetadata = A.Fake(); A.CallTo(() => extraMetadata.Owners).Returns("packageOwner"); @@ -177,7 +177,7 @@ public void DisplayNuGetPackageMetadata_MultipleAuthors() A.CallTo(() => searchMetadata.ProjectUrl).Returns(new Uri("http://github.com")); A.CallTo(() => searchMetadata.LicenseUrl).Returns(new Uri("https://github.com/dotnet/sdk")); A.CallTo(() => searchMetadata.LicenseMetadata).Returns(licenseMetadata); - A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression!.ToString()).Returns("MIT"); + A.CallTo(() => searchMetadata.LicenseMetadata!.LicenseExpression!.ToString()).Returns("MIT"); var extraMetadata = A.Fake(); A.CallTo(() => extraMetadata.Owners).Returns("packageOwner"); @@ -220,7 +220,7 @@ public void DisplayNuGetPackageMetadata_MultipleOwners() A.CallTo(() => searchMetadata.ProjectUrl).Returns(new Uri("http://github.com")); A.CallTo(() => searchMetadata.LicenseUrl).Returns(new Uri("https://github.com/dotnet/sdk")); A.CallTo(() => searchMetadata.LicenseMetadata).Returns(licenseMetadata); - A.CallTo(() => searchMetadata.LicenseMetadata.LicenseExpression!.ToString()).Returns("MIT"); + A.CallTo(() => searchMetadata.LicenseMetadata!.LicenseExpression!.ToString()).Returns("MIT"); var extraMetadata = A.Fake(); A.CallTo(() => extraMetadata.Owners).Returns("owner1, owner2"); From 3ac33a4e490f1bdb9589ccc42bc219755559409b Mon Sep 17 00:00:00 2001 From: "Donna Chen (BEYONDSOFT CONSULTING INC)" Date: Mon, 23 Mar 2026 18:27:02 +0800 Subject: [PATCH 05/14] Update baselines (cherry picked from commit ca8b34c11f7ffb49cb880a76b875d99cf9e2918e) --- ...ootJsonManifest.Build.staticwebassets.json | 14822 +++++++-------- ...duleTargetPaths.Build.staticwebassets.json | 15502 ++++++++-------- ...izeBlazorInitialization.Publish.files.json | 12 +- ...nitialization.Publish.staticwebassets.json | 886 +- ...tBuildAndPublishModules.Publish.files.json | 12 +- ...ublishModules.Publish.staticwebassets.json | 886 +- ...nitialization.Publish.staticwebassets.json | 974 +- ...nBlazorBootJsonManifest.Publish.files.json | 12 +- ...tJsonManifest.Publish.staticwebassets.json | 886 +- ...Assets_BuildMinimal_Works.Build.files.json | 412 +- ...ldMinimal_Works.Build.staticwebassets.json | 15192 +++++++-------- ...ld_Hosted_Works.Build.staticwebassets.json | 15264 +++++++-------- ...ts_PublishMinimal_Works.Publish.files.json | 12 +- ...Minimal_Works.Publish.staticwebassets.json | 886 +- ...iles_AsAssets.Publish.staticwebassets.json | 894 +- ..._Hosted_Works.Publish.staticwebassets.json | 894 +- 16 files changed, 33773 insertions(+), 33773 deletions(-) diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json index 957c98679c27..858ff1e930c4 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json @@ -17,35 +17,35 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetKind": "Build", + "RelativePath": "_framework/blazor.webassembly.js", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetTraitValue": "boot", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${Tfm}\\blazor.webassembly.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "RelativePath": "_framework/blazorwasm-minimal.pdb", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -53,9686 +53,9764 @@ "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetTraitValue": "symbol", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.CSharp.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.CSharp.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Options.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Options.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.wasm", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm", + "RelativePath": "_framework/Microsoft.JSInterop.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.JSInterop.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.wasm", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.AppContext.wasm", + "RelativePath": "_framework/Microsoft.VisualBasic.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.VisualBasic.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Buffers.wasm", + "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.wasm", + "RelativePath": "_framework/Microsoft.Win32.Registry.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Win32.Registry.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.wasm", + "RelativePath": "_framework/System.AppContext.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.AppContext.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.wasm", + "RelativePath": "_framework/System.Buffers.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Buffers.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.wasm", + "RelativePath": "_framework/System.Collections.Concurrent.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Concurrent.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.wasm", + "RelativePath": "_framework/System.Collections.Immutable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Immutable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", + "RelativePath": "_framework/System.Collections.NonGeneric.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.NonGeneric.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm", + "RelativePath": "_framework/System.Collections.Specialized.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Specialized.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "RelativePath": "_framework/System.Collections.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", + "RelativePath": "_framework/System.ComponentModel.Annotations.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.Annotations.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.wasm", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Configuration.wasm", + "RelativePath": "_framework/System.ComponentModel.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Console.wasm", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Core.wasm", + "RelativePath": "_framework/System.ComponentModel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.wasm", + "RelativePath": "_framework/System.Configuration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Configuration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.wasm", + "RelativePath": "_framework/System.Console.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Console.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.wasm", + "RelativePath": "_framework/System.Core.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Core.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.wasm", + "RelativePath": "_framework/System.Data.Common.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.Common.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.wasm", + "RelativePath": "_framework/System.Data.DataSetExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.DataSetExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "RelativePath": "_framework/System.Data.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "RelativePath": "_framework/System.Diagnostics.Contracts.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Contracts.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.wasm", + "RelativePath": "_framework/System.Diagnostics.Debug.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Debug.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.wasm", + "RelativePath": "_framework/System.Diagnostics.Process.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Process.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm", + "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.wasm", + "RelativePath": "_framework/System.Diagnostics.Tools.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Tools.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.wasm", + "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.wasm", + "RelativePath": "_framework/System.Diagnostics.Tracing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Tracing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.wasm", + "RelativePath": "_framework/System.Drawing.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Drawing.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Tar.wasm", + "RelativePath": "_framework/System.Drawing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Drawing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.wasm", + "RelativePath": "_framework/System.Dynamic.Runtime.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Dynamic.Runtime.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.wasm", + "RelativePath": "_framework/System.Formats.Asn1.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Formats.Asn1.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.wasm", + "RelativePath": "_framework/System.Formats.Tar.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Formats.Tar.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.wasm", + "RelativePath": "_framework/System.Globalization.Calendars.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.Calendars.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm", + "RelativePath": "_framework/System.Globalization.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm", + "RelativePath": "_framework/System.Globalization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.wasm", + "RelativePath": "_framework/System.IO.Compression.Brotli.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.Brotli.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm", + "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm", + "RelativePath": "_framework/System.IO.Compression.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.wasm", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.wasm", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.wasm", + "RelativePath": "_framework/System.IO.FileSystem.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm", + "RelativePath": "_framework/System.IO.IsolatedStorage.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.IsolatedStorage.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.wasm", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "RelativePath": "_framework/System.IO.Pipelines.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipelines.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.wasm", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm", + "RelativePath": "_framework/System.IO.Pipes.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipes.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.wasm", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.wasm", + "RelativePath": "_framework/System.IO.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.wasm", + "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.wasm", + "RelativePath": "_framework/System.Linq.Expressions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Expressions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Memory.wasm", + "RelativePath": "_framework/System.Linq.Parallel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Parallel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.wasm", + "RelativePath": "_framework/System.Linq.Queryable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Queryable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.wasm", + "RelativePath": "_framework/System.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.wasm", + "RelativePath": "_framework/System.Memory.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Memory.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.wasm", + "RelativePath": "_framework/System.Net.Http.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Http.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.wasm", + "RelativePath": "_framework/System.Net.Http.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Http.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.wasm", + "RelativePath": "_framework/System.Net.HttpListener.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.HttpListener.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.wasm", + "RelativePath": "_framework/System.Net.Mail.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Mail.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.wasm", + "RelativePath": "_framework/System.Net.NameResolution.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.NameResolution.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.wasm", + "RelativePath": "_framework/System.Net.NetworkInformation.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.NetworkInformation.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.wasm", + "RelativePath": "_framework/System.Net.Ping.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Ping.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.wasm", + "RelativePath": "_framework/System.Net.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServerSentEvents.wasm", + "RelativePath": "_framework/System.Net.Quic.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Quic.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.wasm", + "RelativePath": "_framework/System.Net.Requests.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Requests.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.wasm", + "RelativePath": "_framework/System.Net.Security.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Security.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.wasm", + "RelativePath": "_framework/System.Net.ServerSentEvents.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.ServerSentEvents.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm", + "RelativePath": "_framework/System.Net.ServicePoint.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.ServicePoint.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.wasm", + "RelativePath": "_framework/System.Net.Sockets.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Sockets.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.wasm", + "RelativePath": "_framework/System.Net.WebClient.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebClient.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.wasm", + "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.wasm", + "RelativePath": "_framework/System.Net.WebProxy.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebProxy.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.wasm", + "RelativePath": "_framework/System.Net.WebSockets.Client.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebSockets.Client.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.wasm", + "RelativePath": "_framework/System.Net.WebSockets.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebSockets.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.wasm", + "RelativePath": "_framework/System.Net.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.wasm", + "RelativePath": "_framework/System.Numerics.Vectors.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Numerics.Vectors.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.wasm", + "RelativePath": "_framework/System.Numerics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Numerics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.wasm", + "RelativePath": "_framework/System.ObjectModel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ObjectModel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.wasm", + "RelativePath": "_framework/System.Private.CoreLib.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.CoreLib.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.wasm", + "RelativePath": "_framework/System.Private.DataContractSerialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.DataContractSerialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm", + "RelativePath": "_framework/System.Private.Uri.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Uri.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "RelativePath": "_framework/System.Private.Xml.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Xml.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", + "RelativePath": "_framework/System.Private.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.wasm", + "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.wasm", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.wasm", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.wasm", + "RelativePath": "_framework/System.Reflection.Emit.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm", + "RelativePath": "_framework/System.Reflection.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.wasm", + "RelativePath": "_framework/System.Reflection.Metadata.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Metadata.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.wasm", + "RelativePath": "_framework/System.Reflection.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.wasm", + "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.wasm", + "RelativePath": "_framework/System.Reflection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "RelativePath": "_framework/System.Resources.Reader.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.Reader.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "RelativePath": "_framework/System.Resources.ResourceManager.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.ResourceManager.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.wasm", + "RelativePath": "_framework/System.Resources.Writer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.Writer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.wasm", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "RelativePath": "_framework/System.Runtime.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.wasm", + "RelativePath": "_framework/System.Runtime.Handles.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Handles.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm", + "RelativePath": "_framework/System.Runtime.Intrinsics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Intrinsics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm", + "RelativePath": "_framework/System.Runtime.Loader.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Loader.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm", + "RelativePath": "_framework/System.Runtime.Numerics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Numerics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm", + "RelativePath": "_framework/System.Runtime.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm", + "RelativePath": "_framework/System.Security.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm", + "RelativePath": "_framework/System.Security.Claims.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Claims.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.wasm", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.wasm", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.wasm", + "RelativePath": "_framework/System.Security.Cryptography.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.wasm", + "RelativePath": "_framework/System.Security.Principal.Windows.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Principal.Windows.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.wasm", + "RelativePath": "_framework/System.Security.Principal.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Principal.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.wasm", + "RelativePath": "_framework/System.Security.SecureString.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.SecureString.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm", + "RelativePath": "_framework/System.Security.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm", + "RelativePath": "_framework/System.ServiceModel.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ServiceModel.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.wasm", + "RelativePath": "_framework/System.ServiceProcess.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ServiceProcess.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.wasm", + "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.wasm", + "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.wasm", + "RelativePath": "_framework/System.Text.Encoding.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.AccessControl.wasm", + "RelativePath": "_framework/System.Text.Encodings.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encodings.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.wasm", + "RelativePath": "_framework/System.Text.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.wasm", + "RelativePath": "_framework/System.Text.RegularExpressions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.RegularExpressions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm", + "RelativePath": "_framework/System.Threading.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm", + "RelativePath": "_framework/System.Threading.Channels.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Channels.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm", + "RelativePath": "_framework/System.Threading.Overlapped.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Overlapped.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.wasm", + "RelativePath": "_framework/System.Threading.Tasks.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.wasm", + "RelativePath": "_framework/System.Threading.Thread.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Thread.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.wasm", + "RelativePath": "_framework/System.Threading.ThreadPool.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.ThreadPool.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.wasm", + "RelativePath": "_framework/System.Threading.Timer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Timer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.wasm", + "RelativePath": "_framework/System.Threading.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.wasm", + "RelativePath": "_framework/System.Transactions.Local.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Transactions.Local.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.wasm", + "RelativePath": "_framework/System.Transactions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Transactions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Windows.wasm", + "RelativePath": "_framework/System.ValueTuple.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ValueTuple.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.wasm", + "RelativePath": "_framework/System.Web.HttpUtility.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Web.HttpUtility.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.wasm", + "RelativePath": "_framework/System.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.wasm", + "RelativePath": "_framework/System.Windows.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Windows.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.wasm", + "RelativePath": "_framework/System.Xml.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm", + "RelativePath": "_framework/System.Xml.ReaderWriter.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.ReaderWriter.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.wasm", + "RelativePath": "_framework/System.Xml.Serialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.Serialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.wasm", + "RelativePath": "_framework/System.Xml.XDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.wasm", + "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.wasm", + "RelativePath": "_framework/System.Xml.XPath.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XPath.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.wasm", + "RelativePath": "_framework/System.Xml.XmlDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XmlDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/WindowsBase.wasm", + "RelativePath": "_framework/System.Xml.XmlSerializer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XmlSerializer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js", - "AssetKind": "All", + "RelativePath": "_framework/System.Xml.wasm.gz", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "boot", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${Tfm}\\blazor.webassembly.js", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm-minimal.pdb", + "RelativePath": "_framework/System.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "symbol", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm-minimal.wasm", + "RelativePath": "_framework/WindowsBase.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\WindowsBase.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js", - "AssetKind": "Build", + "RelativePath": "_framework/blazor.webassembly.js.gz", + "AssetKind": "All", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "manifest", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\${Tfm}\\dotnet.js", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.map", + "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", + "RelativePath": "_framework/blazorwasm-minimal.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\blazorwasm-minimal.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\dotnet.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\dotnet.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", + "RelativePath": "_framework/dotnet.js.map.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.js.map.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.map", + "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", + "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", + "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", + "RelativePath": "_framework/dotnet.runtime.js.map.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.map.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/mscorlib.wasm", + "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/netstandard.wasm", + "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", + "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", + "RelativePath": "_framework/mscorlib.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\mscorlib.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", + "RelativePath": "_framework/netstandard.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\netstandard.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal.lib.module.js.gz", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", + "SourceType": "Discovered", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", - "AssetKind": "Build", + "RelativePath": "blazorwasm-minimal.lib.module.js.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "RelatedAsset": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", + "SourceType": "Discovered", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm.gz", - "AssetKind": "Build", + "RelativePath": "css/app.css.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", + "RelatedAsset": "${ProjectPath}\\wwwroot\\css\\app.css", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\wwwroot\\css\\css\\app.css.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", + "SourceType": "Discovered", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", - "AssetKind": "Build", + "RelativePath": "index.html.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", + "RelatedAsset": "${ProjectPath}\\wwwroot\\index.html", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\wwwroot\\index.html.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.wasm.gz", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "manifest", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.wasm.gz", + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\dotnet.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "JSModule", + "AssetTraitValue": "JSLibraryModule", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.CSharp.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.AppContext.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Buffers.wasm.gz", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.wasm.gz", + "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.wasm.gz", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.wasm.gz", + "RelativePath": "_framework/Microsoft.VisualBasic.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.wasm.gz", + "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.wasm.gz", + "RelativePath": "_framework/Microsoft.Win32.Registry.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.wasm.gz", + "RelativePath": "_framework/System.AppContext.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", + "RelativePath": "_framework/System.Buffers.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", + "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.wasm.gz", + "RelativePath": "_framework/System.Collections.Immutable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm.gz", + "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.wasm.gz", + "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Configuration.wasm.gz", + "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Console.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Core.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.wasm.gz", + "RelativePath": "_framework/System.Configuration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", + "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", + "RelativePath": "_framework/System.Core.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.wasm.gz", + "RelativePath": "_framework/System.Data.Common.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm.gz", + "RelativePath": "_framework/System.Data.DataSetExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", + "RelativePath": "_framework/System.Data.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Contracts.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Debug.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Process.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Tar.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Tools.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.wasm.gz", + "RelativePath": "_framework/System.Drawing.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.wasm.gz", + "RelativePath": "_framework/System.Drawing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm.gz", + "RelativePath": "_framework/System.Dynamic.Runtime.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm.gz", + "RelativePath": "_framework/System.Formats.Asn1.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.wasm.gz", + "RelativePath": "_framework/System.Formats.Tar.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Globalization.Calendars.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", + "RelativePath": "_framework/System.Globalization.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm.gz", + "RelativePath": "_framework/System.Globalization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.Brotli.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm.gz", + "RelativePath": "_framework/System.IO.IsolatedStorage.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.wasm.gz", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.wasm.gz", + "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.wasm.gz", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.wasm.gz", + "RelativePath": "_framework/System.IO.Pipes.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Memory.wasm.gz", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.wasm.gz", + "RelativePath": "_framework/System.IO.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.wasm.gz", + "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.wasm.gz", + "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.wasm.gz", + "RelativePath": "_framework/System.Linq.Parallel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.wasm.gz", + "RelativePath": "_framework/System.Linq.Queryable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.wasm.gz", + "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.wasm.gz", + "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.wasm.gz", + "RelativePath": "_framework/System.Net.Http.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.wasm.gz", + "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.wasm.gz", + "RelativePath": "_framework/System.Net.HttpListener.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.wasm.gz", + "RelativePath": "_framework/System.Net.Mail.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServerSentEvents.wasm.gz", + "RelativePath": "_framework/System.Net.NameResolution.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.wasm.gz", + "RelativePath": "_framework/System.Net.NetworkInformation.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.wasm.gz", + "RelativePath": "_framework/System.Net.Ping.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.wasm.gz", + "RelativePath": "_framework/System.Net.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm.gz", + "RelativePath": "_framework/System.Net.Quic.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.wasm.gz", + "RelativePath": "_framework/System.Net.Requests.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.wasm.gz", + "RelativePath": "_framework/System.Net.Security.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.wasm.gz", + "RelativePath": "_framework/System.Net.ServerSentEvents.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.wasm.gz", + "RelativePath": "_framework/System.Net.ServicePoint.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.wasm.gz", + "RelativePath": "_framework/System.Net.Sockets.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.wasm.gz", + "RelativePath": "_framework/System.Net.WebClient.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.wasm.gz", + "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.wasm.gz", + "RelativePath": "_framework/System.Net.WebProxy.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.wasm.gz", + "RelativePath": "_framework/System.Net.WebSockets.Client.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.wasm.gz", + "RelativePath": "_framework/System.Net.WebSockets.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.wasm.gz", + "RelativePath": "_framework/System.Net.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.wasm.gz", + "RelativePath": "_framework/System.Numerics.Vectors.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm.gz", + "RelativePath": "_framework/System.Numerics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", + "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", + "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.wasm.gz", + "RelativePath": "_framework/System.Private.DataContractSerialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.wasm.gz", + "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.wasm.gz", + "RelativePath": "_framework/System.Private.Xml.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.wasm.gz", + "RelativePath": "_framework/System.Private.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm.gz", + "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.wasm.gz", + "RelativePath": "_framework/System.Reflection.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", + "RelativePath": "_framework/System.Reflection.Metadata.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", + "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.wasm.gz", + "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.wasm.gz", + "RelativePath": "_framework/System.Reflection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", + "RelativePath": "_framework/System.Resources.Reader.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.wasm.gz", + "RelativePath": "_framework/System.Resources.Writer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.wasm.gz", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.wasm.gz", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.wasm.gz", + "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", + "RelativePath": "_framework/System.Runtime.Handles.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.wasm.gz", + "RelativePath": "_framework/System.Runtime.Intrinsics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.wasm.gz", + "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Runtime.Numerics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", + "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm.gz", + "RelativePath": "_framework/System.Security.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", + "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm.gz", + "RelativePath": "_framework/System.Security.Principal.Windows.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.wasm.gz", + "RelativePath": "_framework/System.Security.Principal.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.wasm.gz", + "RelativePath": "_framework/System.Security.SecureString.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.wasm.gz", + "RelativePath": "_framework/System.Security.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.wasm.gz", + "RelativePath": "_framework/System.ServiceModel.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.AccessControl.wasm.gz", + "RelativePath": "_framework/System.ServiceProcess.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm.gz", + "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm.gz", + "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.wasm.gz", + "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.wasm.gz", + "RelativePath": "_framework/System.Threading.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.wasm.gz", + "RelativePath": "_framework/System.Threading.Channels.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.wasm.gz", + "RelativePath": "_framework/System.Threading.Overlapped.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.wasm.gz", + "RelativePath": "_framework/System.Threading.Thread.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.wasm.gz", + "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Windows.wasm.gz", + "RelativePath": "_framework/System.Threading.Timer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.wasm.gz", + "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.wasm.gz", + "RelativePath": "_framework/System.Transactions.Local.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.wasm.gz", + "RelativePath": "_framework/System.Transactions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.wasm.gz", + "RelativePath": "_framework/System.ValueTuple.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm.gz", + "RelativePath": "_framework/System.Web.HttpUtility.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.wasm.gz", + "RelativePath": "_framework/System.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.wasm.gz", + "RelativePath": "_framework/System.Windows.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.wasm.gz", + "RelativePath": "_framework/System.Xml.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.wasm.gz", + "RelativePath": "_framework/System.Xml.ReaderWriter.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.wasm.gz", + "RelativePath": "_framework/System.Xml.Serialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/WindowsBase.wasm.gz", + "RelativePath": "_framework/System.Xml.XDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js.gz", - "AssetKind": "All", + "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", + "RelativePath": "_framework/System.Xml.XPath.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm-minimal.wasm.gz", + "RelativePath": "_framework/System.Xml.XmlDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.gz", + "RelativePath": "_framework/System.Xml.XmlSerializer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.map.gz", + "RelativePath": "_framework/System.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.map.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js.gz", + "RelativePath": "_framework/System.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm.gz", + "RelativePath": "_framework/WindowsBase.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.gz", + "RelativePath": "_framework/blazorwasm-minimal.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.map.gz", + "RelativePath": "_framework/mscorlib.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.map.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat.gz", + "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Discovered", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat.gz", - "AssetKind": "Build", + "RelativePath": "blazorwasm-minimal.lib.module.js", + "AssetKind": "All", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "JSModule", + "AssetTraitValue": "JSLibraryModule", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Discovered", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat.gz", - "AssetKind": "Build", + "RelativePath": "css/app.css", + "AssetKind": "All", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\app.css", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Discovered", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/mscorlib.wasm.gz", - "AssetKind": "Build", + "RelativePath": "index.html", + "AssetKind": "All", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\index.html", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "_framework/netstandard.wasm.gz", + "RelativePath": "_framework/dotnet.js.map", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal.lib.module.js.gz", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "blazorwasm-minimal.lib.module.js.gz", - "AssetKind": "All", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "css/app.css.gz", - "AssetKind": "All", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\wwwroot\\css\\app.css", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\wwwroot\\css\\css\\app.css.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "index.html.gz", - "AssetKind": "All", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\wwwroot\\index.html", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\wwwroot\\index.html.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "RelativePath": "_framework/dotnet.runtime.js.map", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "JSModule", - "AssetTraitValue": "JSLibraryModule", + "AssetTraitName": "", + "AssetTraitValue": "", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\wwwroot\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "blazorwasm-minimal.lib.module.js", - "AssetKind": "All", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "JSModule", - "AssetTraitValue": "JSLibraryModule", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\wwwroot\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "css/app.css", - "AssetKind": "All", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\css\\app.css", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\wwwroot\\index.html", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\wwwroot\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "index.html", - "AssetKind": "All", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\index.html", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" } ], "Endpoints": [ { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/blazorwasm-minimal.pdb", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -9762,14 +9840,69 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" + } + ] + }, + { + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -9799,51 +9932,24 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -9869,18 +9975,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -9910,14 +10024,24 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -9943,18 +10067,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.CSharp.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -9984,14 +10116,24 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10017,18 +10159,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10058,14 +10208,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10091,18 +10251,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10132,14 +10300,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10165,18 +10343,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "Route": "_framework/Microsoft.CSharp.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10206,14 +10392,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.CSharp.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10239,25 +10435,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -10280,21 +10484,31 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -10313,18 +10527,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10354,14 +10576,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10387,18 +10619,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10428,14 +10668,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10461,18 +10711,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10502,51 +10760,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10572,18 +10803,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10613,51 +10852,24 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.VisualBasic.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10683,18 +10895,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10724,51 +10944,24 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.AppContext.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10794,18 +10987,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Buffers.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10835,14 +11036,24 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10868,18 +11079,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.Immutable.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10909,14 +11128,24 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10942,18 +11171,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.Specialized.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10983,14 +11220,24 @@ ] }, { - "Route": "_framework/System.Collections.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11016,18 +11263,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11057,51 +11312,24 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11127,18 +11355,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11168,51 +11404,24 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ComponentModel.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11238,18 +11447,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Configuration.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11279,14 +11496,24 @@ ] }, { - "Route": "_framework/System.Console.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11312,18 +11539,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Core.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11353,14 +11588,24 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11386,18 +11631,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", + "Route": "_framework/Microsoft.Extensions.Logging.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11427,14 +11680,24 @@ ] }, { - "Route": "_framework/System.Data.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Logging.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11460,18 +11723,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", + "Route": "_framework/Microsoft.Extensions.Options.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11501,14 +11772,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Options.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11534,18 +11815,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", + "Route": "_framework/Microsoft.Extensions.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11575,14 +11864,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11608,18 +11907,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11649,14 +11956,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11682,18 +11999,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", + "Route": "_framework/Microsoft.JSInterop.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11723,51 +12048,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.JSInterop.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Diagnostics.TraceSource.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11793,18 +12091,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", + "Route": "_framework/Microsoft.VisualBasic.Core.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11834,51 +12140,24 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.VisualBasic.Core.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Drawing.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11904,18 +12183,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", + "Route": "_framework/Microsoft.VisualBasic.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11945,51 +12232,24 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.VisualBasic.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Formats.Tar.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12015,18 +12275,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", + "Route": "_framework/Microsoft.Win32.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12056,14 +12324,24 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Win32.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12089,18 +12367,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Globalization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", + "Route": "_framework/Microsoft.Win32.Registry.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12130,14 +12416,24 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Win32.Registry.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12163,18 +12459,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", + "Route": "_framework/System.AppContext.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12204,14 +12508,24 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "Selectors": [], + "Route": "_framework/System.AppContext.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12237,18 +12551,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Compression.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", + "Route": "_framework/System.Buffers.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12278,51 +12600,24 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Buffers.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12348,18 +12643,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", + "Route": "_framework/System.Collections.Concurrent.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12389,51 +12692,24 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Collections.Concurrent.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12459,18 +12735,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", + "Route": "_framework/System.Collections.Immutable.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12500,14 +12784,24 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Immutable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12533,18 +12827,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Pipelines.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", + "Route": "_framework/System.Collections.NonGeneric.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12574,14 +12876,24 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.NonGeneric.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12607,18 +12919,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Pipes.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", + "Route": "_framework/System.Collections.Specialized.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12648,14 +12968,24 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Specialized.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12681,18 +13011,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", + "Route": "_framework/System.Collections.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12722,14 +13060,24 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12755,18 +13103,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Linq.Expressions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", + "Route": "_framework/System.ComponentModel.Annotations.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12796,14 +13152,24 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.Annotations.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12829,18 +13195,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Linq.Queryable.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12870,14 +13244,24 @@ ] }, { - "Route": "_framework/System.Linq.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12903,18 +13287,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Memory.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12944,51 +13336,24 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.Http.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13014,18 +13379,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.HttpListener.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", + "Route": "_framework/System.ComponentModel.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13055,51 +13428,24 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.NameResolution.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13125,18 +13471,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", + "Route": "_framework/System.ComponentModel.TypeConverter.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13166,51 +13520,24 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.TypeConverter.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13236,18 +13563,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.Quic.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", + "Route": "_framework/System.ComponentModel.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13277,14 +13612,24 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13310,18 +13655,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.Security.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", + "Route": "_framework/System.Configuration.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13351,14 +13704,24 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "Selectors": [], + "Route": "_framework/System.Configuration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13384,18 +13747,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", + "Route": "_framework/System.Console.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13425,14 +13796,24 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "Selectors": [], + "Route": "_framework/System.Console.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13458,18 +13839,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.WebClient.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", + "Route": "_framework/System.Core.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13499,51 +13888,24 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Core.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.WebProxy.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13569,18 +13931,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", + "Route": "_framework/System.Data.Common.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13610,51 +13980,24 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Data.Common.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13680,18 +14023,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", + "Route": "_framework/System.Data.DataSetExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13721,14 +14072,24 @@ ] }, { - "Route": "_framework/System.Numerics.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "Selectors": [], + "Route": "_framework/System.Data.DataSetExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13754,18 +14115,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ObjectModel.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", + "Route": "_framework/System.Data.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13795,14 +14164,24 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "Selectors": [], + "Route": "_framework/System.Data.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13828,18 +14207,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", + "Route": "_framework/System.Diagnostics.Contracts.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13869,14 +14256,24 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Contracts.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13902,18 +14299,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", + "Route": "_framework/System.Diagnostics.Debug.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13943,14 +14348,24 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Debug.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13976,18 +14391,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14017,14 +14440,24 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14050,18 +14483,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14091,14 +14532,24 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14124,18 +14575,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", + "Route": "_framework/System.Diagnostics.Process.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14165,51 +14624,24 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.Process.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Reflection.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14235,18 +14667,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", + "Route": "_framework/System.Diagnostics.StackTrace.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14276,51 +14716,24 @@ ] }, { - "Route": "_framework/System.Reflection.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.StackTrace.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Resources.Reader.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14346,18 +14759,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14387,51 +14808,24 @@ ] }, { - "Route": "_framework/System.Resources.Writer.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14457,18 +14851,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", + "Route": "_framework/System.Diagnostics.Tools.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14498,14 +14900,24 @@ ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Tools.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14531,18 +14943,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Handles.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", + "Route": "_framework/System.Diagnostics.TraceSource.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14572,14 +14992,24 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.TraceSource.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14605,18 +15035,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Route": "_framework/System.Diagnostics.Tracing.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14646,14 +15084,24 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Tracing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14679,18 +15127,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", + "Route": "_framework/System.Drawing.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14720,51 +15176,24 @@ ] }, { - "Route": "_framework/System.Runtime.Loader.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Drawing.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.Numerics.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14790,18 +15219,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", + "Route": "_framework/System.Drawing.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14831,51 +15268,24 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Drawing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14901,18 +15311,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", + "Route": "_framework/System.Dynamic.Runtime.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14942,14 +15360,24 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "Selectors": [], + "Route": "_framework/System.Dynamic.Runtime.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14975,18 +15403,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", + "Route": "_framework/System.Formats.Asn1.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15016,14 +15452,24 @@ ] }, { - "Route": "_framework/System.Security.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "Selectors": [], + "Route": "_framework/System.Formats.Asn1.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15049,18 +15495,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Claims.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", + "Route": "_framework/System.Formats.Tar.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15090,14 +15544,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "Selectors": [], + "Route": "_framework/System.Formats.Tar.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15123,18 +15587,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", + "Route": "_framework/System.Globalization.Calendars.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15164,14 +15636,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "Selectors": [], + "Route": "_framework/System.Globalization.Calendars.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15197,18 +15679,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", + "Route": "_framework/System.Globalization.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15238,14 +15728,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "Selectors": [], + "Route": "_framework/System.Globalization.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15271,18 +15771,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", + "Route": "_framework/System.Globalization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15312,14 +15820,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "Selectors": [], + "Route": "_framework/System.Globalization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15345,18 +15863,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", + "Route": "_framework/System.IO.Compression.Brotli.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15386,51 +15912,24 @@ ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.Brotli.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Security.Principal.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15456,18 +15955,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.SecureString.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", + "Route": "_framework/System.IO.Compression.FileSystem.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15497,51 +16004,24 @@ ] }, { - "Route": "_framework/System.Security.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ServiceModel.Web.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15567,18 +16047,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceProcess.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", + "Route": "_framework/System.IO.Compression.ZipFile.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15608,51 +16096,24 @@ ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.ZipFile.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Text.Encoding.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15678,18 +16139,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", + "Route": "_framework/System.IO.Compression.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15719,14 +16188,24 @@ ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Compression.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15752,18 +16231,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Json.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15793,14 +16280,24 @@ ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15826,18 +16323,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15867,14 +16372,24 @@ ] }, { - "Route": "_framework/System.Threading.Channels.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15900,18 +16415,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", + "Route": "_framework/System.IO.FileSystem.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15941,51 +16464,24 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.FileSystem.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16011,18 +16507,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", + "Route": "_framework/System.IO.FileSystem.Watcher.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16052,51 +16556,24 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.FileSystem.Watcher.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Threading.Thread.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16122,18 +16599,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", + "Route": "_framework/System.IO.FileSystem.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16163,14 +16648,24 @@ ] }, { - "Route": "_framework/System.Threading.Timer.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16196,18 +16691,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", + "Route": "_framework/System.IO.IsolatedStorage.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16237,14 +16740,24 @@ ] }, { - "Route": "_framework/System.Transactions.Local.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "Selectors": [], + "Route": "_framework/System.IO.IsolatedStorage.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16270,18 +16783,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", + "Route": "_framework/System.IO.MemoryMappedFiles.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16311,14 +16832,24 @@ ] }, { - "Route": "_framework/System.ValueTuple.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "Selectors": [], + "Route": "_framework/System.IO.MemoryMappedFiles.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16344,18 +16875,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", + "Route": "_framework/System.IO.Pipelines.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16385,14 +16924,24 @@ ] }, { - "Route": "_framework/System.Web.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipelines.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16418,18 +16967,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Windows.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", + "Route": "_framework/System.IO.Pipes.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16459,14 +17016,24 @@ ] }, { - "Route": "_framework/System.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipes.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16492,18 +17059,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", + "Route": "_framework/System.IO.Pipes.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16533,14 +17108,24 @@ ] }, { - "Route": "_framework/System.Xml.Serialization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipes.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16566,18 +17151,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XDocument.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16607,14 +17200,24 @@ ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "Selectors": [], + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16640,18 +17243,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", + "Route": "_framework/System.IO.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16681,14 +17292,24 @@ ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "Selectors": [], + "Route": "_framework/System.IO.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16714,18 +17335,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", + "Route": "_framework/System.Linq.AsyncEnumerable.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16755,14 +17384,24 @@ ] }, { - "Route": "_framework/System.Xml.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "Selectors": [], + "Route": "_framework/System.Linq.AsyncEnumerable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16788,18 +17427,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", + "Route": "_framework/System.Linq.Expressions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16829,14 +17476,24 @@ ] }, { - "Route": "_framework/WindowsBase.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", - "Selectors": [], + "Route": "_framework/System.Linq.Expressions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16862,25 +17519,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Route": "_framework/System.Linq.Parallel.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -16903,21 +17568,31 @@ ] }, { - "Route": "_framework/blazorwasm-minimal.pdb", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", - "Selectors": [], + "Route": "_framework/System.Linq.Parallel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -16936,18 +17611,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm-minimal.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.wasm", + "Route": "_framework/System.Linq.Queryable.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16977,21 +17660,31 @@ ] }, { - "Route": "_framework/dotnet.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", - "Selectors": [], + "Route": "_framework/System.Linq.Queryable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17007,52 +17700,36 @@ } ], "EndpointProperties": [ - { - "Name": "PreloadAs", - "Value": "script" - }, - { - "Name": "PreloadCrossorigin", - "Value": "anonymous" - }, - { - "Name": "PreloadGroup", - "Value": "webassembly" - }, - { - "Name": "PreloadOrder", - "Value": "1" - }, - { - "Name": "PreloadPriority", - "Value": "high" - }, - { - "Name": "PreloadRel", - "Value": "preload" - }, { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.map", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", + "Route": "_framework/System.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17075,21 +17752,31 @@ ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], + "Route": "_framework/System.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17108,18 +17795,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "Route": "_framework/System.Memory.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17149,21 +17844,31 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], + "Route": "_framework/System.Memory.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17182,25 +17887,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.map", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", + "Route": "_framework/System.Net.Http.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17223,87 +17936,23 @@ ] }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Net.Http.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" + "Name": "Content-Encoding", + "Value": "gzip" }, { "Name": "Content-Length", @@ -17311,7 +17960,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17330,18 +17979,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/mscorlib.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", + "Route": "_framework/System.Net.Http.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17371,14 +18028,24 @@ ] }, { - "Route": "_framework/netstandard.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", - "Selectors": [], + "Route": "_framework/System.Net.Http.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17404,12 +18071,16 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17449,8 +18120,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17500,8 +18171,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17541,8 +18212,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17592,8 +18263,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Route": "_framework/System.Net.NameResolution.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17633,8 +18304,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Route": "_framework/System.Net.NameResolution.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17684,8 +18355,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17725,8 +18396,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17776,8 +18447,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17817,8 +18488,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17868,8 +18539,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Route": "_framework/System.Net.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17909,8 +18580,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Route": "_framework/System.Net.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17960,8 +18631,8 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18001,8 +18672,8 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18052,8 +18723,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Route": "_framework/System.Net.Requests.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18070,7 +18741,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18093,8 +18764,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Route": "_framework/System.Net.Requests.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18117,7 +18788,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18144,8 +18815,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Route": "_framework/System.Net.Security.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18185,8 +18856,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Route": "_framework/System.Net.Security.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18236,8 +18907,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18277,8 +18948,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18328,8 +18999,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18369,8 +19040,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18420,8 +19091,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18461,8 +19132,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18512,8 +19183,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18553,8 +19224,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18604,8 +19275,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18645,8 +19316,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18696,8 +19367,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18737,8 +19408,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18788,8 +19459,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18829,8 +19500,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18880,8 +19551,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18921,8 +19592,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18972,8 +19643,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Route": "_framework/System.Net.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19013,8 +19684,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Route": "_framework/System.Net.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19064,8 +19735,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19105,8 +19776,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19156,8 +19827,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Route": "_framework/System.Numerics.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19197,8 +19868,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Route": "_framework/System.Numerics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19248,8 +19919,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19289,8 +19960,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19340,8 +20011,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19381,8 +20052,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19432,8 +20103,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19473,8 +20144,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19524,8 +20195,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19565,8 +20236,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19616,8 +20287,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19657,8 +20328,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19708,8 +20379,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19749,8 +20420,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19800,8 +20471,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19841,8 +20512,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19892,8 +20563,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19933,8 +20604,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19984,8 +20655,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20025,8 +20696,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20076,8 +20747,8 @@ ] }, { - "Route": "_framework/System.AppContext.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Route": "_framework/System.Reflection.Emit.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20117,8 +20788,8 @@ ] }, { - "Route": "_framework/System.AppContext.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Route": "_framework/System.Reflection.Emit.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20168,8 +20839,8 @@ ] }, { - "Route": "_framework/System.Buffers.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20209,8 +20880,8 @@ ] }, { - "Route": "_framework/System.Buffers.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20260,8 +20931,8 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20301,8 +20972,8 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20352,8 +21023,8 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Route": "_framework/System.Reflection.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20393,8 +21064,8 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Route": "_framework/System.Reflection.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20444,8 +21115,8 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20485,8 +21156,8 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20536,8 +21207,8 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Route": "_framework/System.Reflection.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20577,8 +21248,8 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Route": "_framework/System.Reflection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20628,8 +21299,8 @@ ] }, { - "Route": "_framework/System.Collections.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20669,8 +21340,8 @@ ] }, { - "Route": "_framework/System.Collections.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20720,8 +21391,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20761,8 +21432,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20812,8 +21483,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20853,8 +21524,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20904,8 +21575,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20945,8 +21616,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20996,8 +21667,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21037,8 +21708,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21088,8 +21759,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21129,8 +21800,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21180,8 +21851,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21221,8 +21892,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21272,8 +21943,8 @@ ] }, { - "Route": "_framework/System.Configuration.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21313,8 +21984,8 @@ ] }, { - "Route": "_framework/System.Configuration.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21364,8 +22035,8 @@ ] }, { - "Route": "_framework/System.Console.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21405,8 +22076,8 @@ ] }, { - "Route": "_framework/System.Console.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21456,8 +22127,8 @@ ] }, { - "Route": "_framework/System.Core.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21497,8 +22168,8 @@ ] }, { - "Route": "_framework/System.Core.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21548,8 +22219,8 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21589,8 +22260,8 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21640,8 +22311,8 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21681,8 +22352,8 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21732,8 +22403,8 @@ ] }, { - "Route": "_framework/System.Data.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21773,8 +22444,8 @@ ] }, { - "Route": "_framework/System.Data.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21824,8 +22495,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21865,8 +22536,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21916,8 +22587,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21957,8 +22628,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22008,8 +22679,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22049,8 +22720,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22100,8 +22771,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22141,8 +22812,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22192,8 +22863,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22233,8 +22904,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22284,8 +22955,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Route": "_framework/System.Runtime.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22325,8 +22996,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Route": "_framework/System.Runtime.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22376,8 +23047,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22417,8 +23088,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22468,8 +23139,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22509,8 +23180,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22560,8 +23231,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22601,8 +23272,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22652,8 +23323,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22693,8 +23364,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22744,8 +23415,8 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22785,8 +23456,8 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22836,8 +23507,8 @@ ] }, { - "Route": "_framework/System.Drawing.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22877,8 +23548,8 @@ ] }, { - "Route": "_framework/System.Drawing.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22928,8 +23599,8 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22969,8 +23640,8 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23020,8 +23691,8 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23061,8 +23732,8 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23112,8 +23783,8 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23153,8 +23824,8 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23204,8 +23875,8 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23245,8 +23916,8 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23296,8 +23967,8 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23337,8 +24008,8 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23388,8 +24059,8 @@ ] }, { - "Route": "_framework/System.Globalization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Route": "_framework/System.Security.Principal.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23429,8 +24100,8 @@ ] }, { - "Route": "_framework/System.Globalization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Route": "_framework/System.Security.Principal.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23480,8 +24151,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23521,8 +24192,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23572,8 +24243,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Route": "_framework/System.Security.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23613,8 +24284,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Route": "_framework/System.Security.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23664,8 +24335,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23705,8 +24376,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23756,8 +24427,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23797,8 +24468,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23848,8 +24519,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23889,8 +24560,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23940,8 +24611,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23981,8 +24652,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24032,8 +24703,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24073,8 +24744,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24124,8 +24795,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24165,8 +24836,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24216,8 +24887,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Route": "_framework/System.Text.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24257,8 +24928,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Route": "_framework/System.Text.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24308,8 +24979,8 @@ ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Route": "_framework/System.Text.RegularExpressions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24349,8 +25020,8 @@ ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Route": "_framework/System.Text.RegularExpressions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24400,8 +25071,8 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24441,8 +25112,8 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24492,8 +25163,8 @@ ] }, { - "Route": "_framework/System.IO.Pipelines.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Route": "_framework/System.Threading.Channels.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24533,8 +25204,8 @@ ] }, { - "Route": "_framework/System.IO.Pipelines.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Route": "_framework/System.Threading.Channels.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24584,8 +25255,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Route": "_framework/System.Threading.Overlapped.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24625,8 +25296,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Route": "_framework/System.Threading.Overlapped.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24676,8 +25347,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24717,8 +25388,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24768,8 +25439,8 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24809,8 +25480,8 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24860,8 +25531,8 @@ ] }, { - "Route": "_framework/System.IO.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24901,8 +25572,8 @@ ] }, { - "Route": "_framework/System.IO.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24952,8 +25623,8 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24993,8 +25664,8 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25044,8 +25715,8 @@ ] }, { - "Route": "_framework/System.Linq.Expressions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Route": "_framework/System.Threading.Thread.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25085,8 +25756,8 @@ ] }, { - "Route": "_framework/System.Linq.Expressions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Route": "_framework/System.Threading.Thread.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25136,8 +25807,8 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25177,8 +25848,8 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25228,8 +25899,8 @@ ] }, { - "Route": "_framework/System.Linq.Queryable.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25269,8 +25940,8 @@ ] }, { - "Route": "_framework/System.Linq.Queryable.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25320,8 +25991,8 @@ ] }, { - "Route": "_framework/System.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Route": "_framework/System.Threading.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25361,8 +26032,8 @@ ] }, { - "Route": "_framework/System.Linq.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Route": "_framework/System.Threading.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25412,8 +26083,8 @@ ] }, { - "Route": "_framework/System.Memory.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Route": "_framework/System.Transactions.Local.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25453,8 +26124,8 @@ ] }, { - "Route": "_framework/System.Memory.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Route": "_framework/System.Transactions.Local.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25504,8 +26175,8 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Route": "_framework/System.Transactions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25545,8 +26216,8 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Route": "_framework/System.Transactions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25596,8 +26267,8 @@ ] }, { - "Route": "_framework/System.Net.Http.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Route": "_framework/System.ValueTuple.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25637,8 +26308,8 @@ ] }, { - "Route": "_framework/System.Net.Http.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Route": "_framework/System.ValueTuple.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25688,8 +26359,8 @@ ] }, { - "Route": "_framework/System.Net.HttpListener.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Route": "_framework/System.Web.HttpUtility.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25729,8 +26400,8 @@ ] }, { - "Route": "_framework/System.Net.HttpListener.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Route": "_framework/System.Web.HttpUtility.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25780,8 +26451,8 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Route": "_framework/System.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25821,8 +26492,8 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Route": "_framework/System.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25872,8 +26543,8 @@ ] }, { - "Route": "_framework/System.Net.NameResolution.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Route": "_framework/System.Windows.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25913,8 +26584,8 @@ ] }, { - "Route": "_framework/System.Net.NameResolution.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Route": "_framework/System.Windows.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25964,8 +26635,8 @@ ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Route": "_framework/System.Xml.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26005,8 +26676,8 @@ ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Route": "_framework/System.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26056,8 +26727,8 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26097,8 +26768,8 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26148,8 +26819,8 @@ ] }, { - "Route": "_framework/System.Net.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26189,8 +26860,8 @@ ] }, { - "Route": "_framework/System.Net.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26240,8 +26911,8 @@ ] }, { - "Route": "_framework/System.Net.Quic.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Route": "_framework/System.Xml.XDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26281,8 +26952,8 @@ ] }, { - "Route": "_framework/System.Net.Quic.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Route": "_framework/System.Xml.XDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26332,8 +27003,8 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26373,8 +27044,8 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26424,8 +27095,8 @@ ] }, { - "Route": "_framework/System.Net.Security.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26465,8 +27136,8 @@ ] }, { - "Route": "_framework/System.Net.Security.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26516,8 +27187,8 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26557,8 +27228,8 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26608,8 +27279,8 @@ ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26649,8 +27320,8 @@ ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26700,8 +27371,8 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Route": "_framework/System.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26741,8 +27412,8 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Route": "_framework/System.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26792,8 +27463,8 @@ ] }, { - "Route": "_framework/System.Net.WebClient.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Route": "_framework/System.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26833,8 +27504,8 @@ ] }, { - "Route": "_framework/System.Net.WebClient.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Route": "_framework/System.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26884,8 +27555,8 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Route": "_framework/WindowsBase.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26925,8 +27596,8 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Route": "_framework/WindowsBase.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26976,8 +27647,8 @@ ] }, { - "Route": "_framework/System.Net.WebProxy.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Route": "_framework/blazor.webassembly.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26994,7 +27665,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27017,8 +27688,8 @@ ] }, { - "Route": "_framework/System.Net.WebProxy.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27041,7 +27712,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27068,8 +27739,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Route": "_framework/blazorwasm-minimal.pdb.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27086,7 +27757,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27109,8 +27780,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Route": "_framework/blazorwasm-minimal.pdb", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27133,7 +27804,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27160,8 +27831,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Route": "_framework/blazorwasm-minimal.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27201,8 +27872,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Route": "_framework/blazorwasm-minimal.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27252,8 +27923,8 @@ ] }, { - "Route": "_framework/System.Net.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Route": "_framework/dotnet.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27270,7 +27941,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27293,8 +27964,8 @@ ] }, { - "Route": "_framework/System.Net.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Route": "_framework/dotnet.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27317,7 +27988,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27333,6 +28004,30 @@ } ], "EndpointProperties": [ + { + "Name": "PreloadAs", + "Value": "script" + }, + { + "Name": "PreloadCrossorigin", + "Value": "anonymous" + }, + { + "Name": "PreloadGroup", + "Value": "webassembly" + }, + { + "Name": "PreloadOrder", + "Value": "1" + }, + { + "Name": "PreloadPriority", + "Value": "high" + }, + { + "Name": "PreloadRel", + "Value": "preload" + }, { "Name": "integrity", "Value": "__integrity__" @@ -27344,8 +28039,8 @@ ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Route": "_framework/dotnet.js.map.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27362,7 +28057,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -27385,8 +28080,8 @@ ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Route": "_framework/dotnet.js.map", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27409,7 +28104,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -27436,8 +28131,8 @@ ] }, { - "Route": "_framework/System.Numerics.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Route": "_framework/dotnet.native.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27454,7 +28149,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27477,8 +28172,8 @@ ] }, { - "Route": "_framework/System.Numerics.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Route": "_framework/dotnet.native.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27501,7 +28196,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27528,8 +28223,8 @@ ] }, { - "Route": "_framework/System.ObjectModel.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Route": "_framework/dotnet.native.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27569,8 +28264,8 @@ ] }, { - "Route": "_framework/System.ObjectModel.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27620,8 +28315,8 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Route": "_framework/dotnet.runtime.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27638,7 +28333,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27661,8 +28356,8 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27685,7 +28380,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27712,8 +28407,8 @@ ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Route": "_framework/dotnet.runtime.js.map.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27730,7 +28425,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -27753,8 +28448,8 @@ ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Route": "_framework/dotnet.runtime.js.map", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27777,7 +28472,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -27804,8 +28499,8 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Route": "_framework/icudt_CJK.dat.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27822,7 +28517,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27845,8 +28540,8 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27869,7 +28564,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27896,8 +28591,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Route": "_framework/icudt_EFIGS.dat.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27914,7 +28609,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27937,8 +28632,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27961,7 +28656,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27988,8 +28683,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Route": "_framework/icudt_no_CJK.dat.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28006,7 +28701,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28029,8 +28724,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28053,7 +28748,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28080,8 +28775,8 @@ ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Route": "_framework/mscorlib.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28121,8 +28816,8 @@ ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Route": "_framework/mscorlib.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28172,8 +28867,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Route": "_framework/netstandard.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28213,8 +28908,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Route": "_framework/netstandard.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28264,8 +28959,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Route": "blazorwasm-minimal.lib.module.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal.lib.module.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28282,7 +28977,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28305,8 +29000,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Route": "blazorwasm-minimal.lib.module.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal.lib.module.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28329,7 +29024,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28345,6 +29040,10 @@ } ], "EndpointProperties": [ + { + "Name": "dependency-group", + "Value": "js-initializer" + }, { "Name": "integrity", "Value": "__integrity__" @@ -28352,12 +29051,16 @@ { "Name": "original-resource", "Value": "__original-resource__" + }, + { + "Name": "script-type", + "Value": "module" } ] }, { - "Route": "_framework/System.Reflection.Emit.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Route": "css/app.css.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28374,7 +29077,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28397,8 +29100,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28421,7 +29124,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28448,8 +29151,8 @@ ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Route": "index.html.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28466,7 +29169,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/html" }, { "Name": "ETag", @@ -28489,8 +29192,8 @@ ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Route": "index.html", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28513,7 +29216,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/html" }, { "Name": "ETag", @@ -28540,25 +29243,21 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Route": "_framework/dotnet.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\dotnet.js", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28574,6 +29273,30 @@ } ], "EndpointProperties": [ + { + "Name": "PreloadAs", + "Value": "script" + }, + { + "Name": "PreloadCrossorigin", + "Value": "anonymous" + }, + { + "Name": "PreloadGroup", + "Value": "webassembly" + }, + { + "Name": "PreloadOrder", + "Value": "1" + }, + { + "Name": "PreloadPriority", + "Value": "high" + }, + { + "Name": "PreloadRel", + "Value": "preload" + }, { "Name": "integrity", "Value": "__integrity__" @@ -28581,31 +29304,21 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28624,26 +29337,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -28673,24 +29378,14 @@ ] }, { - "Route": "_framework/System.Reflection.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -28716,26 +29411,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -28765,24 +29452,14 @@ ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -28808,26 +29485,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Components.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -28857,24 +29526,14 @@ ] }, { - "Route": "_framework/System.Reflection.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -28900,26 +29559,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.Reader.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Route": "_framework/Microsoft.CSharp.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -28949,24 +29600,14 @@ ] }, { - "Route": "_framework/System.Resources.Reader.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -28992,26 +29633,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29041,24 +29674,14 @@ ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29084,26 +29707,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.Writer.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29133,24 +29748,14 @@ ] }, { - "Route": "_framework/System.Resources.Writer.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29176,26 +29781,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29225,24 +29822,51 @@ ] }, { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29268,26 +29892,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29317,24 +29933,51 @@ ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29360,26 +30003,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29409,24 +30044,51 @@ ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.Extensions.Logging.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Extensions.Options.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29452,26 +30114,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Handles.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29501,24 +30155,14 @@ ] }, { - "Route": "_framework/System.Runtime.Handles.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29544,26 +30188,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "Route": "_framework/Microsoft.JSInterop.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29593,24 +30229,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.VisualBasic.Core.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29636,26 +30262,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "Route": "_framework/Microsoft.VisualBasic.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29685,24 +30303,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Win32.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29728,26 +30336,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", + "Route": "_framework/Microsoft.Win32.Registry.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29777,24 +30377,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.AppContext.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29820,26 +30410,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "Route": "_framework/System.Buffers.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29869,24 +30451,14 @@ ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Collections.Concurrent.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29912,26 +30484,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Loader.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", + "Route": "_framework/System.Collections.Immutable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29961,24 +30525,14 @@ ] }, { - "Route": "_framework/System.Runtime.Loader.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Collections.NonGeneric.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30004,26 +30558,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Numerics.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", + "Route": "_framework/System.Collections.Specialized.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30053,24 +30599,51 @@ ] }, { - "Route": "_framework/System.Runtime.Numerics.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Collections.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.ComponentModel.Annotations.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30096,26 +30669,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30145,24 +30710,51 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", - "Selectors": [ + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.ComponentModel.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30188,26 +30780,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "Route": "_framework/System.ComponentModel.TypeConverter.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30237,24 +30821,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ComponentModel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30280,26 +30854,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "Route": "_framework/System.Configuration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30329,24 +30895,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Console.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30372,26 +30928,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "Route": "_framework/System.Core.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30421,24 +30969,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Data.Common.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30464,26 +31002,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", + "Route": "_framework/System.Data.DataSetExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30513,24 +31043,51 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Data.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.Contracts.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30556,26 +31113,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", + "Route": "_framework/System.Diagnostics.Debug.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30605,24 +31154,51 @@ ] }, { - "Route": "_framework/System.Runtime.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30648,26 +31224,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", + "Route": "_framework/System.Diagnostics.Process.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30697,24 +31265,51 @@ ] }, { - "Route": "_framework/System.Security.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Diagnostics.StackTrace.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30740,26 +31335,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Claims.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", + "Route": "_framework/System.Diagnostics.Tools.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30789,24 +31376,14 @@ ] }, { - "Route": "_framework/System.Security.Claims.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Diagnostics.TraceSource.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30832,26 +31409,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "Route": "_framework/System.Diagnostics.Tracing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30881,24 +31450,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Drawing.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30924,26 +31483,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "Route": "_framework/System.Drawing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30973,24 +31524,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Dynamic.Runtime.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31016,26 +31557,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "Route": "_framework/System.Formats.Asn1.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31065,24 +31598,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Formats.Tar.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31108,26 +31631,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "Route": "_framework/System.Globalization.Calendars.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31157,24 +31672,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Globalization.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31200,26 +31705,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "Route": "_framework/System.Globalization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31249,24 +31746,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Compression.Brotli.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31292,26 +31779,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "Route": "_framework/System.IO.Compression.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31341,24 +31820,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", - "Selectors": [ + "Route": "_framework/System.IO.Compression.ZipFile.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.Compression.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31384,26 +31890,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31433,24 +31931,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", - "Selectors": [ + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.FileSystem.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31476,26 +32001,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", + "Route": "_framework/System.IO.FileSystem.Watcher.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31525,24 +32042,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31568,26 +32075,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", + "Route": "_framework/System.IO.IsolatedStorage.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31617,24 +32116,14 @@ ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.MemoryMappedFiles.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31660,26 +32149,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Principal.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", + "Route": "_framework/System.IO.Pipelines.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31709,24 +32190,14 @@ ] }, { - "Route": "_framework/System.Security.Principal.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Pipes.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31752,26 +32223,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.SecureString.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", + "Route": "_framework/System.IO.Pipes.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31801,24 +32264,51 @@ ] }, { - "Route": "_framework/System.Security.SecureString.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", - "Selectors": [ + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31844,26 +32334,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", + "Route": "_framework/System.Linq.AsyncEnumerable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31893,24 +32375,51 @@ ] }, { - "Route": "_framework/System.Security.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Linq.Expressions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Linq.Parallel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31936,26 +32445,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceModel.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", + "Route": "_framework/System.Linq.Queryable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31985,24 +32486,51 @@ ] }, { - "Route": "_framework/System.ServiceModel.Web.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Memory.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32028,26 +32556,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceProcess.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", + "Route": "_framework/System.Net.Http.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32077,24 +32597,14 @@ ] }, { - "Route": "_framework/System.ServiceProcess.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Http.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32120,26 +32630,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32169,24 +32671,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Mail.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32212,26 +32704,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "Route": "_framework/System.Net.NameResolution.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32261,24 +32745,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.NetworkInformation.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32304,26 +32778,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32353,24 +32819,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32396,26 +32852,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32445,24 +32893,14 @@ ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Requests.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32488,26 +32926,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", + "Route": "_framework/System.Net.Security.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32537,24 +32967,14 @@ ] }, { - "Route": "_framework/System.Text.Json.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.ServerSentEvents.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32580,26 +33000,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32629,24 +33041,51 @@ ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.Sockets.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.WebClient.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32672,26 +33111,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32721,24 +33152,51 @@ ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.WebProxy.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.WebSockets.Client.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32764,26 +33222,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Channels.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32813,24 +33263,14 @@ ] }, { - "Route": "_framework/System.Threading.Channels.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32856,26 +33296,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32905,24 +33337,14 @@ ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Numerics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32948,26 +33370,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32997,24 +33411,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Private.CoreLib.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33040,26 +33444,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33089,24 +33485,51 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Private.Uri.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Private.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33132,26 +33555,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33181,24 +33596,51 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.DispatchProxy.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33224,26 +33666,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33273,24 +33707,51 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.Emit.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Reflection.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33316,26 +33777,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Thread.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33365,24 +33818,14 @@ ] }, { - "Route": "_framework/System.Threading.Thread.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Reflection.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33408,26 +33851,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33457,24 +33892,14 @@ ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Reflection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33500,26 +33925,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Timer.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33549,24 +33966,14 @@ ] }, { - "Route": "_framework/System.Threading.Timer.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Resources.ResourceManager.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33592,26 +33999,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33641,24 +34040,14 @@ ] }, { - "Route": "_framework/System.Threading.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33684,26 +34073,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.Local.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33733,24 +34114,14 @@ ] }, { - "Route": "_framework/System.Transactions.Local.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33776,26 +34147,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33825,24 +34188,14 @@ ] }, { - "Route": "_framework/System.Transactions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33868,26 +34221,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ValueTuple.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33917,24 +34262,51 @@ ] }, { - "Route": "_framework/System.ValueTuple.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Runtime.InteropServices.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.Intrinsics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33960,26 +34332,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34009,24 +34373,51 @@ ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Runtime.Numerics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34052,26 +34443,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34101,24 +34484,14 @@ ] }, { - "Route": "_framework/System.Web.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34144,26 +34517,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Windows.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34193,24 +34558,14 @@ ] }, { - "Route": "_framework/System.Windows.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Serialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34236,26 +34591,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", + "Route": "_framework/System.Runtime.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34285,24 +34632,14 @@ ] }, { - "Route": "_framework/System.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34328,26 +34665,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34377,24 +34706,51 @@ ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Cryptography.Cng.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34420,26 +34776,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.Serialization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34469,24 +34817,51 @@ ] }, { - "Route": "_framework/System.Xml.Serialization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Cryptography.Encoding.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34512,26 +34887,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34561,24 +34928,51 @@ ] }, { - "Route": "_framework/System.Xml.XDocument.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Cryptography.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34604,26 +34998,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34653,24 +35039,14 @@ ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Principal.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34696,26 +35072,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34745,24 +35113,14 @@ ] }, { - "Route": "_framework/System.Xml.XPath.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34788,26 +35146,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34837,24 +35187,14 @@ ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ServiceProcess.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34880,26 +35220,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34929,24 +35261,14 @@ ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.Encoding.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34972,26 +35294,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35021,24 +35335,14 @@ ] }, { - "Route": "_framework/System.Xml.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.Encodings.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35064,26 +35368,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", + "Route": "_framework/System.Text.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35113,24 +35409,14 @@ ] }, { - "Route": "_framework/System.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.RegularExpressions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35156,26 +35442,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/WindowsBase.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35205,24 +35483,14 @@ ] }, { - "Route": "_framework/WindowsBase.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Channels.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35248,33 +35516,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazor.webassembly.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "Route": "_framework/System.Threading.Overlapped.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35297,31 +35557,21 @@ ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35340,33 +35590,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm-minimal.pdb.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35389,31 +35631,21 @@ ] }, { - "Route": "_framework/blazorwasm-minimal.pdb", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Tasks.Parallel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35432,26 +35664,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm-minimal.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35481,24 +35705,14 @@ ] }, { - "Route": "_framework/blazorwasm-minimal.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Thread.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35524,33 +35738,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35573,31 +35779,21 @@ ] }, { - "Route": "_framework/dotnet.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Timer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35614,59 +35810,64 @@ ], "EndpointProperties": [ { - "Name": "PreloadAs", - "Value": "script" - }, + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Threading.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "PreloadCrossorigin", - "Value": "anonymous" + "Name": "Cache-Control", + "Value": "no-cache" }, { - "Name": "PreloadGroup", - "Value": "webassembly" + "Name": "Content-Length", + "Value": "__content-length__" }, { - "Name": "PreloadOrder", - "Value": "1" + "Name": "Content-Type", + "Value": "application/wasm" }, { - "Name": "PreloadPriority", - "Value": "high" + "Name": "ETag", + "Value": "__etag__" }, { - "Name": "PreloadRel", - "Value": "preload" + "Name": "Last-Modified", + "Value": "__last-modified__" }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.map.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", + "Route": "_framework/System.Transactions.Local.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35689,31 +35890,21 @@ ] }, { - "Route": "_framework/dotnet.js.map", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Transactions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35732,33 +35923,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", + "Route": "_framework/System.ValueTuple.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35781,31 +35964,21 @@ ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Web.HttpUtility.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35824,26 +35997,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", + "Route": "_framework/System.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35873,24 +36038,14 @@ ] }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Windows.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35916,33 +36071,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", + "Route": "_framework/System.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35965,31 +36112,21 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.ReaderWriter.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36008,33 +36145,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.map.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", + "Route": "_framework/System.Xml.Serialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36057,31 +36186,21 @@ ] }, { - "Route": "_framework/dotnet.runtime.js.map", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.XDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36100,33 +36219,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_CJK.dat.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36149,31 +36260,21 @@ ] }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.XPath.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36192,33 +36293,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_EFIGS.dat.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36241,31 +36334,21 @@ ] }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.XmlSerializer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36284,33 +36367,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_no_CJK.dat.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "Route": "_framework/System.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36333,31 +36408,21 @@ ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36376,26 +36441,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/mscorlib.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", + "Route": "_framework/WindowsBase.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36425,24 +36482,14 @@ ] }, { - "Route": "_framework/mscorlib.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/blazorwasm-minimal.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36468,26 +36515,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/netstandard.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", + "Route": "_framework/mscorlib.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36518,23 +36557,13 @@ }, { "Route": "_framework/netstandard.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36560,26 +36589,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "blazorwasm-minimal.lib.module.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal.lib.module.js.gz", + "Route": "blazorwasm-minimal.lib.module.js", + "AssetFile": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36602,38 +36623,36 @@ } ], "EndpointProperties": [ + { + "Name": "dependency-group", + "Value": "js-initializer" + }, { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "script-type", + "Value": "module" } ] }, { - "Route": "blazorwasm-minimal.lib.module.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal.lib.module.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\wwwroot\\css\\app.css", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/css" }, { "Name": "ETag", @@ -36649,44 +36668,65 @@ } ], "EndpointProperties": [ - { - "Name": "dependency-group", - "Value": "js-initializer" - }, { "Name": "integrity", "Value": "__integrity__" + } + ] + }, + { + "Route": "index.html", + "AssetFile": "${ProjectPath}\\wwwroot\\index.html", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" }, { - "Name": "original-resource", - "Value": "__original-resource__" + "Name": "Content-Length", + "Value": "__content-length__" }, { - "Name": "script-type", - "Value": "module" + "Name": "Content-Type", + "Value": "text/html" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" } ] }, { - "Route": "css/app.css.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", + "Route": "_framework/dotnet.js.map", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/plain" }, { "Name": "ETag", @@ -36709,31 +36749,21 @@ ] }, { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/javascript" }, { "Name": "ETag", @@ -36752,33 +36782,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "index.html.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36801,31 +36823,21 @@ ] }, { - "Route": "index.html", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "text/javascript" }, { "Name": "ETag", @@ -36844,16 +36856,12 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Route": "_framework/dotnet.runtime.js.map", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "Selectors": [], "ResponseHeaders": [ { @@ -36866,7 +36874,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/plain" }, { "Name": "ETag", @@ -36889,8 +36897,8 @@ ] }, { - "Route": "blazorwasm-minimal.lib.module.js", - "AssetFile": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js", + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "Selectors": [], "ResponseHeaders": [ { @@ -36903,7 +36911,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -36919,23 +36927,15 @@ } ], "EndpointProperties": [ - { - "Name": "dependency-group", - "Value": "js-initializer" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "script-type", - "Value": "module" } ] }, { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\wwwroot\\css\\app.css", + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "Selectors": [], "ResponseHeaders": [ { @@ -36948,7 +36948,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -36971,8 +36971,8 @@ ] }, { - "Route": "index.html", - "AssetFile": "${ProjectPath}\\wwwroot\\index.html", + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "Selectors": [], "ResponseHeaders": [ { @@ -36985,7 +36985,7 @@ }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "application/octet-stream" }, { "Name": "ETag", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json index b70ed50747e0..21ae436db1ff 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json @@ -93,265 +93,35 @@ "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetKind": "Build", + "RelativePath": "_framework/blazor.webassembly.js", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetTraitValue": "boot", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${Tfm}\\blazor.webassembly.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -359,9580 +129,9603 @@ "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetTraitValue": "symbol", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetKind": "Build", + "RelativePath": "Fake-License.txt.gz", + "AssetKind": "All", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", + "RelativePath": "_framework/Microsoft.CSharp.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.CSharp.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.wasm", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/RazorClassLibrary.pdb", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "symbol", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/RazorClassLibrary.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.AppContext.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Buffers.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Options.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Options.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.wasm", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", + "RelativePath": "_framework/Microsoft.JSInterop.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.JSInterop.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "RelativePath": "_framework/Microsoft.VisualBasic.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.VisualBasic.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", + "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", + "RelativePath": "_framework/Microsoft.Win32.Registry.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Win32.Registry.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.wasm", + "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\_framework\\RazorClassLibrary.pdb.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Configuration.wasm", + "RelativePath": "_framework/RazorClassLibrary.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\RazorClassLibrary.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Console.wasm", + "RelativePath": "_framework/System.AppContext.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.AppContext.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Core.wasm", + "RelativePath": "_framework/System.Buffers.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Buffers.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.wasm", + "RelativePath": "_framework/System.Collections.Concurrent.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Concurrent.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.wasm", + "RelativePath": "_framework/System.Collections.Immutable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Immutable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.wasm", + "RelativePath": "_framework/System.Collections.NonGeneric.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.NonGeneric.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.wasm", + "RelativePath": "_framework/System.Collections.Specialized.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Specialized.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.wasm", + "RelativePath": "_framework/System.Collections.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "RelativePath": "_framework/System.ComponentModel.Annotations.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.Annotations.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.wasm", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm", + "RelativePath": "_framework/System.ComponentModel.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.wasm", + "RelativePath": "_framework/System.ComponentModel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm", + "RelativePath": "_framework/System.Configuration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Configuration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", + "RelativePath": "_framework/System.Console.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Console.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.wasm", + "RelativePath": "_framework/System.Core.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Core.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.wasm", + "RelativePath": "_framework/System.Data.Common.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.Common.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.wasm", + "RelativePath": "_framework/System.Data.DataSetExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.DataSetExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.wasm", + "RelativePath": "_framework/System.Data.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Tar.wasm", + "RelativePath": "_framework/System.Diagnostics.Contracts.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Contracts.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.wasm", + "RelativePath": "_framework/System.Diagnostics.Debug.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Debug.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.wasm", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.wasm", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.wasm", + "RelativePath": "_framework/System.Diagnostics.Process.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Process.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm", + "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.wasm", + "RelativePath": "_framework/System.Diagnostics.Tools.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Tools.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm", + "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "RelativePath": "_framework/System.Diagnostics.Tracing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Tracing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm", + "RelativePath": "_framework/System.Drawing.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Drawing.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", + "RelativePath": "_framework/System.Drawing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Drawing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.wasm", + "RelativePath": "_framework/System.Dynamic.Runtime.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Dynamic.Runtime.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.wasm", + "RelativePath": "_framework/System.Formats.Asn1.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Formats.Asn1.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm", + "RelativePath": "_framework/System.Formats.Tar.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Formats.Tar.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.wasm", + "RelativePath": "_framework/System.Globalization.Calendars.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.Calendars.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm", + "RelativePath": "_framework/System.Globalization.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.wasm", + "RelativePath": "_framework/System.Globalization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "RelativePath": "_framework/System.IO.Compression.Brotli.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.Brotli.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.wasm", + "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm", + "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.wasm", + "RelativePath": "_framework/System.IO.Compression.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.wasm", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.wasm", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.wasm", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Memory.wasm", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.wasm", + "RelativePath": "_framework/System.IO.FileSystem.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.wasm", + "RelativePath": "_framework/System.IO.IsolatedStorage.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.IsolatedStorage.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.wasm", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.wasm", + "RelativePath": "_framework/System.IO.Pipelines.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipelines.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.wasm", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.wasm", + "RelativePath": "_framework/System.IO.Pipes.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipes.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.wasm", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.wasm", + "RelativePath": "_framework/System.IO.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.wasm", + "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.wasm", + "RelativePath": "_framework/System.Linq.Expressions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Expressions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.wasm", + "RelativePath": "_framework/System.Linq.Parallel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Parallel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServerSentEvents.wasm", + "RelativePath": "_framework/System.Linq.Queryable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Queryable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.wasm", + "RelativePath": "_framework/System.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.wasm", + "RelativePath": "_framework/System.Memory.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Memory.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.wasm", + "RelativePath": "_framework/System.Net.Http.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Http.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm", + "RelativePath": "_framework/System.Net.Http.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Http.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.wasm", + "RelativePath": "_framework/System.Net.HttpListener.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.HttpListener.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.wasm", + "RelativePath": "_framework/System.Net.Mail.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Mail.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.wasm", + "RelativePath": "_framework/System.Net.NameResolution.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.NameResolution.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.wasm", + "RelativePath": "_framework/System.Net.NetworkInformation.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.NetworkInformation.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.wasm", + "RelativePath": "_framework/System.Net.Ping.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Ping.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.wasm", + "RelativePath": "_framework/System.Net.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.wasm", + "RelativePath": "_framework/System.Net.Quic.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Quic.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.wasm", + "RelativePath": "_framework/System.Net.Requests.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Requests.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.wasm", + "RelativePath": "_framework/System.Net.Security.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Security.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.wasm", + "RelativePath": "_framework/System.Net.ServerSentEvents.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.ServerSentEvents.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.wasm", + "RelativePath": "_framework/System.Net.ServicePoint.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.ServicePoint.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.wasm", + "RelativePath": "_framework/System.Net.Sockets.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Sockets.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm", + "RelativePath": "_framework/System.Net.WebClient.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebClient.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", + "RelativePath": "_framework/System.Net.WebProxy.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebProxy.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.wasm", + "RelativePath": "_framework/System.Net.WebSockets.Client.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebSockets.Client.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.wasm", + "RelativePath": "_framework/System.Net.WebSockets.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebSockets.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.wasm", + "RelativePath": "_framework/System.Net.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.wasm", + "RelativePath": "_framework/System.Numerics.Vectors.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Numerics.Vectors.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm", + "RelativePath": "_framework/System.Numerics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Numerics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.wasm", + "RelativePath": "_framework/System.ObjectModel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ObjectModel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.wasm", + "RelativePath": "_framework/System.Private.CoreLib.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.CoreLib.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.wasm", + "RelativePath": "_framework/System.Private.DataContractSerialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.DataContractSerialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.wasm", + "RelativePath": "_framework/System.Private.Uri.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Uri.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "RelativePath": "_framework/System.Private.Xml.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Xml.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "RelativePath": "_framework/System.Private.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.wasm", + "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.wasm", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "RelativePath": "_framework/System.Reflection.Emit.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.wasm", + "RelativePath": "_framework/System.Reflection.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.wasm", + "RelativePath": "_framework/System.Reflection.Metadata.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Metadata.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.wasm", + "RelativePath": "_framework/System.Reflection.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.wasm", + "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm", + "RelativePath": "_framework/System.Reflection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm", + "RelativePath": "_framework/System.Resources.Reader.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.Reader.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm", + "RelativePath": "_framework/System.Resources.ResourceManager.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.ResourceManager.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm", + "RelativePath": "_framework/System.Resources.Writer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.Writer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.wasm", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.wasm", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.wasm", + "RelativePath": "_framework/System.Runtime.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.wasm", + "RelativePath": "_framework/System.Runtime.Handles.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Handles.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetMergeSource": "", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm", + "RelativePath": "_framework/System.Runtime.Intrinsics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Intrinsics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "RelativePath": "_framework/System.Runtime.Loader.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Loader.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm", + "RelativePath": "_framework/System.Runtime.Numerics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Numerics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.wasm", + "RelativePath": "_framework/System.Runtime.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.wasm", + "RelativePath": "_framework/System.Security.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.wasm", + "RelativePath": "_framework/System.Security.Claims.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Claims.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.wasm", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.AccessControl.wasm", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.wasm", + "RelativePath": "_framework/System.Security.Cryptography.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.wasm", + "RelativePath": "_framework/System.Security.Principal.Windows.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Principal.Windows.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm", + "RelativePath": "_framework/System.Security.Principal.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Principal.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm", + "RelativePath": "_framework/System.Security.SecureString.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.SecureString.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm", + "RelativePath": "_framework/System.Security.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.wasm", + "RelativePath": "_framework/System.ServiceModel.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ServiceModel.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.wasm", + "RelativePath": "_framework/System.ServiceProcess.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ServiceProcess.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.wasm", + "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.wasm", + "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.wasm", + "RelativePath": "_framework/System.Text.Encoding.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.wasm", + "RelativePath": "_framework/System.Text.Encodings.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encodings.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.wasm", + "RelativePath": "_framework/System.Text.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.wasm", + "RelativePath": "_framework/System.Text.RegularExpressions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.RegularExpressions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.wasm", + "RelativePath": "_framework/System.Threading.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.wasm", + "RelativePath": "_framework/System.Threading.Channels.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Channels.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Windows.wasm", + "RelativePath": "_framework/System.Threading.Overlapped.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Overlapped.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.wasm", + "RelativePath": "_framework/System.Threading.Tasks.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm", + "RelativePath": "_framework/System.Threading.Thread.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Thread.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.wasm", + "RelativePath": "_framework/System.Threading.ThreadPool.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.ThreadPool.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.wasm", + "RelativePath": "_framework/System.Threading.Timer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Timer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.wasm", + "RelativePath": "_framework/System.Threading.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.wasm", + "RelativePath": "_framework/System.Transactions.Local.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Transactions.Local.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.wasm", + "RelativePath": "_framework/System.Transactions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Transactions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/WindowsBase.wasm", + "RelativePath": "_framework/System.ValueTuple.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ValueTuple.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js", - "AssetKind": "All", + "RelativePath": "_framework/System.Web.HttpUtility.wasm.gz", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "boot", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${Tfm}\\blazor.webassembly.js", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Web.HttpUtility.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm.pdb", + "RelativePath": "_framework/System.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "symbol", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm.wasm", + "RelativePath": "_framework/System.Windows.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Windows.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js", + "RelativePath": "_framework/System.Xml.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "manifest", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.map", + "RelativePath": "_framework/System.Xml.ReaderWriter.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.ReaderWriter.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", + "RelativePath": "_framework/System.Xml.Serialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.Serialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", + "RelativePath": "_framework/System.Xml.XDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", + "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.map", + "RelativePath": "_framework/System.Xml.XPath.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XPath.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", + "RelativePath": "_framework/System.Xml.XmlDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XmlDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", + "RelativePath": "_framework/System.Xml.XmlSerializer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XmlSerializer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", + "RelativePath": "_framework/System.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/mscorlib.wasm", + "RelativePath": "_framework/System.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/netstandard.wasm", + "RelativePath": "_framework/WindowsBase.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\WindowsBase.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "Fake-License.txt.gz", + "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", + "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", + "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazorwasm.pdb.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", + "RelativePath": "_framework/blazorwasm.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\blazorwasm.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\dotnet.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "RelativePath": "_framework/dotnet.js.map.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.js.map.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm.gz", + "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", + "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.wasm.gz", + "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "RelativePath": "_framework/dotnet.runtime.js.map.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.map.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", + "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "RelativePath": "_framework/mscorlib.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\mscorlib.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", + "RelativePath": "_framework/netstandard.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\netstandard.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm.lib.module.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm.gz", - "AssetKind": "Build", + "RelativePath": "blazorwasm.lib.module.js.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "RelativePath": "css/app.css.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", + "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\css\\app.css.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", + "RelativePath": "custom-service-worker-assets.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", - "AssetKind": "Build", + "RelativePath": "index.html.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "RelativePath": "serviceworkers/my-service-worker.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\serviceworkers\\my-service-worker.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "manifest", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "JSModule", + "AssetTraitValue": "JSLibraryModule", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "BasePath": "/", + "RelativePath": "custom-service-worker-assets.js", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "BlazorServiceWorker", + "AssetTraitValue": "ServiceWorkerManifest", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm.gz", + "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "BlazorServiceWorker", + "AssetTraitValue": "ServiceWorkerJs", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\serviceworkers\\my-service-worker.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.CSharp.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.wasm.gz", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/RazorClassLibrary.pdb.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/RazorClassLibrary.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.AppContext.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Buffers.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.wasm.gz", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Configuration.wasm.gz", + "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Console.wasm.gz", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Core.wasm.gz", + "RelativePath": "_framework/Microsoft.VisualBasic.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.wasm.gz", + "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.wasm.gz", + "RelativePath": "_framework/Microsoft.Win32.Registry.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.wasm.gz", + "RelativePath": "_framework/RazorClassLibrary.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.wasm.gz", + "RelativePath": "_framework/System.AppContext.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.wasm.gz", + "RelativePath": "_framework/System.Buffers.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", + "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", + "RelativePath": "_framework/System.Collections.Immutable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.wasm.gz", + "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm.gz", + "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", + "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.wasm.gz", + "RelativePath": "_framework/System.Configuration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Tar.wasm.gz", + "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.wasm.gz", + "RelativePath": "_framework/System.Core.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.wasm.gz", + "RelativePath": "_framework/System.Data.Common.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.wasm.gz", + "RelativePath": "_framework/System.Data.DataSetExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.wasm.gz", + "RelativePath": "_framework/System.Data.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Contracts.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Debug.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Process.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Tools.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.wasm.gz", + "RelativePath": "_framework/System.Drawing.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Drawing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.wasm.gz", + "RelativePath": "_framework/System.Dynamic.Runtime.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", + "RelativePath": "_framework/System.Formats.Asn1.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.wasm.gz", + "RelativePath": "_framework/System.Formats.Tar.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm.gz", + "RelativePath": "_framework/System.Globalization.Calendars.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.wasm.gz", + "RelativePath": "_framework/System.Globalization.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.wasm.gz", + "RelativePath": "_framework/System.Globalization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.Brotli.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Memory.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.wasm.gz", + "RelativePath": "_framework/System.IO.IsolatedStorage.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.wasm.gz", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.wasm.gz", + "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.wasm.gz", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.wasm.gz", + "RelativePath": "_framework/System.IO.Pipes.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServerSentEvents.wasm.gz", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.wasm.gz", + "RelativePath": "_framework/System.IO.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.wasm.gz", + "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.wasm.gz", + "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm.gz", + "RelativePath": "_framework/System.Linq.Parallel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.wasm.gz", + "RelativePath": "_framework/System.Linq.Queryable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.wasm.gz", + "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.wasm.gz", + "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.wasm.gz", + "RelativePath": "_framework/System.Net.Http.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.wasm.gz", + "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.wasm.gz", + "RelativePath": "_framework/System.Net.HttpListener.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.wasm.gz", + "RelativePath": "_framework/System.Net.Mail.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.wasm.gz", + "RelativePath": "_framework/System.Net.NameResolution.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.wasm.gz", + "RelativePath": "_framework/System.Net.NetworkInformation.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.wasm.gz", + "RelativePath": "_framework/System.Net.Ping.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.wasm.gz", + "RelativePath": "_framework/System.Net.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.wasm.gz", + "RelativePath": "_framework/System.Net.Quic.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm.gz", + "RelativePath": "_framework/System.Net.Requests.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", + "RelativePath": "_framework/System.Net.Security.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", + "RelativePath": "_framework/System.Net.ServerSentEvents.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.wasm.gz", + "RelativePath": "_framework/System.Net.ServicePoint.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.wasm.gz", + "RelativePath": "_framework/System.Net.Sockets.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.wasm.gz", + "RelativePath": "_framework/System.Net.WebClient.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.wasm.gz", + "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm.gz", + "RelativePath": "_framework/System.Net.WebProxy.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.wasm.gz", + "RelativePath": "_framework/System.Net.WebSockets.Client.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.wasm.gz", + "RelativePath": "_framework/System.Net.WebSockets.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.wasm.gz", + "RelativePath": "_framework/System.Net.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.wasm.gz", + "RelativePath": "_framework/System.Numerics.Vectors.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", + "RelativePath": "_framework/System.Numerics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", + "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.wasm.gz", + "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.wasm.gz", + "RelativePath": "_framework/System.Private.DataContractSerialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", + "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "RelativePath": "_framework/System.Private.Xml.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.wasm.gz", + "RelativePath": "_framework/System.Private.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.wasm.gz", + "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm.gz", + "RelativePath": "_framework/System.Reflection.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", + "RelativePath": "_framework/System.Reflection.Metadata.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm.gz", + "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.wasm.gz", + "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.wasm.gz", + "RelativePath": "_framework/System.Reflection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Resources.Reader.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.wasm.gz", + "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", + "RelativePath": "_framework/System.Resources.Writer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm.gz", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm.gz", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm.gz", + "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", + "RelativePath": "_framework/System.Runtime.Handles.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.wasm.gz", + "RelativePath": "_framework/System.Runtime.Intrinsics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.wasm.gz", + "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.wasm.gz", + "RelativePath": "_framework/System.Runtime.Numerics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.wasm.gz", + "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.wasm.gz", + "RelativePath": "_framework/System.Security.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.wasm.gz", + "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.wasm.gz", + "RelativePath": "_framework/System.Security.Principal.Windows.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.wasm.gz", + "RelativePath": "_framework/System.Security.Principal.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.wasm.gz", + "RelativePath": "_framework/System.Security.SecureString.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.wasm.gz", + "RelativePath": "_framework/System.Security.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.wasm.gz", + "RelativePath": "_framework/System.ServiceModel.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.wasm.gz", + "RelativePath": "_framework/System.ServiceProcess.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Windows.wasm.gz", + "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.wasm.gz", + "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.wasm.gz", + "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.wasm.gz", + "RelativePath": "_framework/System.Threading.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.wasm.gz", + "RelativePath": "_framework/System.Threading.Channels.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm.gz", + "RelativePath": "_framework/System.Threading.Overlapped.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.wasm.gz", + "RelativePath": "_framework/System.Threading.Thread.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/WindowsBase.wasm.gz", + "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js.gz", - "AssetKind": "All", + "RelativePath": "_framework/System.Threading.Timer.wasm", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm.pdb.gz", + "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm.wasm.gz", + "RelativePath": "_framework/System.Transactions.Local.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.gz", + "RelativePath": "_framework/System.Transactions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.map.gz", + "RelativePath": "_framework/System.ValueTuple.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.map.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js.gz", + "RelativePath": "_framework/System.Web.HttpUtility.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm.gz", + "RelativePath": "_framework/System.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.gz", + "RelativePath": "_framework/System.Windows.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.map.gz", + "RelativePath": "_framework/System.Xml.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.map.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat.gz", + "RelativePath": "_framework/System.Xml.ReaderWriter.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat.gz", + "RelativePath": "_framework/System.Xml.Serialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat.gz", + "RelativePath": "_framework/System.Xml.XDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/mscorlib.wasm.gz", + "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/netstandard.wasm.gz", + "RelativePath": "_framework/System.Xml.XPath.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm.lib.module.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "blazorwasm.lib.module.js.gz", - "AssetKind": "All", + "RelativePath": "_framework/System.Xml.XmlDocument.wasm", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "css/app.css.gz", + "RelativePath": "_framework/System.Xml.XmlSerializer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", + "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\css\\app.css.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "custom-service-worker-assets.js.gz", + "RelativePath": "_framework/System.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "index.html.gz", - "AssetKind": "All", + "RelativePath": "_framework/System.wasm", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "serviceworkers/my-service-worker.js.gz", + "RelativePath": "_framework/WindowsBase.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\serviceworkers\\my-service-worker.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "RelativePath": "_framework/blazorwasm.wasm", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "JSModule", - "AssetTraitValue": "JSLibraryModule", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "custom-service-worker-assets.js", + "RelativePath": "_framework/mscorlib.wasm", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "BlazorServiceWorker", - "AssetTraitValue": "ServiceWorkerManifest", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "serviceworkers/my-service-worker.js", + "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "BlazorServiceWorker", - "AssetTraitValue": "ServiceWorkerJs", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\serviceworkers\\my-service-worker.js", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -10028,6 +9821,29 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, + { + "Identity": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\", + "BasePath": "/", + "RelativePath": "_framework/RazorClassLibrary.pdb", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "symbol", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, { "Identity": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\razorclasslibrary.lib.module.js.gz", "SourceId": "RazorClassLibrary", @@ -10165,6 +9981,190 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.js.map", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js.map", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" } ], "Endpoints": [ @@ -10298,8 +10298,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -10312,7 +10312,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -10335,8 +10335,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "Route": "_framework/blazorwasm.pdb", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "Selectors": [], "ResponseHeaders": [ { @@ -10349,7 +10349,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -10372,8 +10372,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", + "Route": "Fake-License.txt.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", "Selectors": [], "ResponseHeaders": [ { @@ -10381,41 +10381,8 @@ "Value": "no-cache" }, { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" + "Name": "Content-Encoding", + "Value": "gzip" }, { "Name": "Content-Length", @@ -10423,7 +10390,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -10446,58 +10413,31 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "Fake-License.txt", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -10516,18 +10456,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.CSharp.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10557,51 +10505,24 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10627,18 +10548,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10668,51 +10597,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10738,18 +10640,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10779,14 +10689,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10812,18 +10732,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10853,14 +10781,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10886,18 +10824,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10927,14 +10873,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10960,18 +10916,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11001,14 +10965,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11034,18 +11008,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", + "Route": "_framework/Microsoft.CSharp.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11075,51 +11057,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.CSharp.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11145,25 +11100,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -11186,21 +11149,31 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -11219,18 +11192,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11260,14 +11241,24 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11293,18 +11284,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11334,51 +11333,24 @@ ] }, { - "Route": "_framework/RazorClassLibrary.pdb", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/RazorClassLibrary.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11404,18 +11376,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.AppContext.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11445,14 +11425,24 @@ ] }, { - "Route": "_framework/System.Buffers.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11478,18 +11468,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11519,14 +11517,24 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11552,18 +11560,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11593,14 +11609,24 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11626,18 +11652,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11667,51 +11701,24 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11737,18 +11744,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11778,51 +11793,24 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11848,18 +11836,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ComponentModel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11889,14 +11885,24 @@ ] }, { - "Route": "_framework/System.Configuration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11922,18 +11928,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Console.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11963,14 +11977,24 @@ ] }, { - "Route": "_framework/System.Core.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11996,18 +12020,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Data.Common.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12037,14 +12069,24 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12070,18 +12112,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Data.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12111,14 +12161,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12144,18 +12204,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12185,14 +12253,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12218,18 +12296,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", + "Route": "_framework/Microsoft.Extensions.Logging.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12259,14 +12345,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Logging.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12292,18 +12388,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", + "Route": "_framework/Microsoft.Extensions.Options.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12333,51 +12437,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Options.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Diagnostics.Tools.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12403,18 +12480,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", + "Route": "_framework/Microsoft.Extensions.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12444,51 +12529,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Drawing.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12514,18 +12572,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Drawing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12555,51 +12621,24 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Formats.Asn1.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12625,18 +12664,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Formats.Tar.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", + "Route": "_framework/Microsoft.JSInterop.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12666,14 +12713,24 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.JSInterop.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12699,18 +12756,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", + "Route": "_framework/Microsoft.VisualBasic.Core.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12740,14 +12805,24 @@ ] }, { - "Route": "_framework/System.Globalization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.VisualBasic.Core.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12773,18 +12848,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", + "Route": "_framework/Microsoft.VisualBasic.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12814,14 +12897,24 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.VisualBasic.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12847,18 +12940,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", + "Route": "_framework/Microsoft.Win32.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12888,51 +12989,24 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Win32.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12958,18 +13032,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", + "Route": "_framework/Microsoft.Win32.Registry.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12999,14 +13081,24 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Win32.Registry.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13032,25 +13124,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", + "Route": "_framework/RazorClassLibrary.pdb.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -13073,21 +13173,31 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "Selectors": [], + "Route": "_framework/RazorClassLibrary.pdb", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -13106,18 +13216,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", + "Route": "_framework/RazorClassLibrary.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13147,14 +13265,24 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "Selectors": [], + "Route": "_framework/RazorClassLibrary.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13180,18 +13308,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Pipelines.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", + "Route": "_framework/System.AppContext.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13221,14 +13357,24 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "Selectors": [], + "Route": "_framework/System.AppContext.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13254,18 +13400,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Pipes.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", + "Route": "_framework/System.Buffers.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13295,14 +13449,24 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "Selectors": [], + "Route": "_framework/System.Buffers.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13328,18 +13492,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", + "Route": "_framework/System.Collections.Concurrent.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13369,14 +13541,24 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Concurrent.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13402,18 +13584,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Linq.Expressions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", + "Route": "_framework/System.Collections.Immutable.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13443,14 +13633,24 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Immutable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13476,18 +13676,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Linq.Queryable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", + "Route": "_framework/System.Collections.NonGeneric.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13517,14 +13725,24 @@ ] }, { - "Route": "_framework/System.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.NonGeneric.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13550,18 +13768,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Memory.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", + "Route": "_framework/System.Collections.Specialized.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13591,51 +13817,24 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Collections.Specialized.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.Http.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13661,18 +13860,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.HttpListener.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", + "Route": "_framework/System.Collections.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13702,51 +13909,24 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Collections.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.NameResolution.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13772,18 +13952,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", + "Route": "_framework/System.ComponentModel.Annotations.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13813,51 +14001,24 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.Annotations.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13883,18 +14044,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.Quic.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13924,14 +14093,24 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13957,18 +14136,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.Security.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13998,14 +14185,24 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14031,18 +14228,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", + "Route": "_framework/System.ComponentModel.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14072,14 +14277,24 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14105,18 +14320,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.WebClient.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", + "Route": "_framework/System.ComponentModel.TypeConverter.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14146,51 +14369,24 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.TypeConverter.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.WebProxy.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14216,18 +14412,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", + "Route": "_framework/System.ComponentModel.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14257,51 +14461,24 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14327,18 +14504,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", + "Route": "_framework/System.Configuration.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14368,14 +14553,24 @@ ] }, { - "Route": "_framework/System.Numerics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "Selectors": [], + "Route": "_framework/System.Configuration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14401,18 +14596,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ObjectModel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", + "Route": "_framework/System.Console.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14442,14 +14645,24 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "Selectors": [], + "Route": "_framework/System.Console.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14475,18 +14688,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", + "Route": "_framework/System.Core.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14516,14 +14737,24 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "Selectors": [], + "Route": "_framework/System.Core.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14549,18 +14780,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", + "Route": "_framework/System.Data.Common.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14590,14 +14829,24 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "Selectors": [], + "Route": "_framework/System.Data.Common.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14623,18 +14872,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", + "Route": "_framework/System.Data.DataSetExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14664,14 +14921,24 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "Selectors": [], + "Route": "_framework/System.Data.DataSetExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14697,18 +14964,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", + "Route": "_framework/System.Data.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14738,14 +15013,24 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "Selectors": [], + "Route": "_framework/System.Data.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14771,18 +15056,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", + "Route": "_framework/System.Diagnostics.Contracts.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14812,51 +15105,24 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.Contracts.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Reflection.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14882,18 +15148,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", + "Route": "_framework/System.Diagnostics.Debug.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14923,51 +15197,24 @@ ] }, { - "Route": "_framework/System.Reflection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.Debug.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Resources.Reader.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14993,18 +15240,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15034,51 +15289,24 @@ ] }, { - "Route": "_framework/System.Resources.Writer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15104,18 +15332,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15145,14 +15381,24 @@ ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15178,18 +15424,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Handles.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", + "Route": "_framework/System.Diagnostics.Process.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15219,14 +15473,24 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Process.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15252,18 +15516,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Route": "_framework/System.Diagnostics.StackTrace.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15293,14 +15565,24 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.StackTrace.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15326,18 +15608,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15367,51 +15657,24 @@ ] }, { - "Route": "_framework/System.Runtime.Loader.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.Numerics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15437,18 +15700,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", + "Route": "_framework/System.Diagnostics.Tools.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15478,51 +15749,24 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.Tools.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15548,18 +15792,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", + "Route": "_framework/System.Diagnostics.TraceSource.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15589,14 +15841,24 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.TraceSource.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15622,18 +15884,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", + "Route": "_framework/System.Diagnostics.Tracing.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15663,14 +15933,24 @@ ] }, { - "Route": "_framework/System.Security.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Tracing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15696,18 +15976,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Claims.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", + "Route": "_framework/System.Drawing.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15737,14 +16025,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "Selectors": [], + "Route": "_framework/System.Drawing.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15770,18 +16068,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", + "Route": "_framework/System.Drawing.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15811,14 +16117,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "Selectors": [], + "Route": "_framework/System.Drawing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15844,18 +16160,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", + "Route": "_framework/System.Dynamic.Runtime.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15885,14 +16209,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "Selectors": [], + "Route": "_framework/System.Dynamic.Runtime.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15918,18 +16252,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", + "Route": "_framework/System.Formats.Asn1.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15959,14 +16301,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "Selectors": [], + "Route": "_framework/System.Formats.Asn1.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15992,18 +16344,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", + "Route": "_framework/System.Formats.Tar.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16033,51 +16393,24 @@ ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Formats.Tar.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Security.Principal.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16103,18 +16436,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.SecureString.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", + "Route": "_framework/System.Globalization.Calendars.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16144,51 +16485,24 @@ ] }, { - "Route": "_framework/System.Security.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Globalization.Calendars.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ServiceModel.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16214,18 +16528,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceProcess.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", + "Route": "_framework/System.Globalization.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16255,51 +16577,24 @@ ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Globalization.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Text.Encoding.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16325,18 +16620,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", + "Route": "_framework/System.Globalization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16366,14 +16669,24 @@ ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "Selectors": [], + "Route": "_framework/System.Globalization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16399,18 +16712,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", + "Route": "_framework/System.IO.Compression.Brotli.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16440,14 +16761,24 @@ ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Compression.Brotli.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16473,18 +16804,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", + "Route": "_framework/System.IO.Compression.FileSystem.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16514,14 +16853,24 @@ ] }, { - "Route": "_framework/System.Threading.Channels.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Compression.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16547,18 +16896,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", + "Route": "_framework/System.IO.Compression.ZipFile.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16588,51 +16945,24 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.ZipFile.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16658,18 +16988,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", + "Route": "_framework/System.IO.Compression.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16699,51 +17037,24 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Threading.Thread.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16769,18 +17080,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16810,14 +17129,24 @@ ] }, { - "Route": "_framework/System.Threading.Timer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16843,18 +17172,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16884,14 +17221,24 @@ ] }, { - "Route": "_framework/System.Transactions.Local.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16917,18 +17264,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", + "Route": "_framework/System.IO.FileSystem.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16958,14 +17313,24 @@ ] }, { - "Route": "_framework/System.ValueTuple.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16991,18 +17356,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", + "Route": "_framework/System.IO.FileSystem.Watcher.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17032,14 +17405,24 @@ ] }, { - "Route": "_framework/System.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.Watcher.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17065,18 +17448,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Windows.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", + "Route": "_framework/System.IO.FileSystem.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17106,14 +17497,24 @@ ] }, { - "Route": "_framework/System.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17139,18 +17540,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", + "Route": "_framework/System.IO.IsolatedStorage.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17180,14 +17589,24 @@ ] }, { - "Route": "_framework/System.Xml.Serialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "Selectors": [], + "Route": "_framework/System.IO.IsolatedStorage.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17213,18 +17632,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", + "Route": "_framework/System.IO.MemoryMappedFiles.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17254,14 +17681,24 @@ ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "Selectors": [], + "Route": "_framework/System.IO.MemoryMappedFiles.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17287,18 +17724,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", + "Route": "_framework/System.IO.Pipelines.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17328,14 +17773,24 @@ ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipelines.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17361,18 +17816,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", + "Route": "_framework/System.IO.Pipes.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17402,14 +17865,24 @@ ] }, { - "Route": "_framework/System.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipes.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17435,18 +17908,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", + "Route": "_framework/System.IO.Pipes.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17476,14 +17957,24 @@ ] }, { - "Route": "_framework/WindowsBase.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipes.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17509,25 +18000,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17550,51 +18049,24 @@ ] }, { - "Route": "_framework/blazorwasm.pdb", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/blazorwasm.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17620,25 +18092,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Route": "_framework/System.IO.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17654,30 +18134,6 @@ } ], "EndpointProperties": [ - { - "Name": "PreloadAs", - "Value": "script" - }, - { - "Name": "PreloadCrossorigin", - "Value": "anonymous" - }, - { - "Name": "PreloadGroup", - "Value": "webassembly" - }, - { - "Name": "PreloadOrder", - "Value": "1" - }, - { - "Name": "PreloadPriority", - "Value": "high" - }, - { - "Name": "PreloadRel", - "Value": "preload" - }, { "Name": "integrity", "Value": "__integrity__" @@ -17685,58 +18141,31 @@ ] }, { - "Route": "_framework/dotnet.js.map", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17755,18 +18184,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "Route": "_framework/System.Linq.AsyncEnumerable.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17796,87 +18233,23 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Linq.AsyncEnumerable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/dotnet.runtime.js.map", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" + "Name": "Content-Encoding", + "Value": "gzip" }, { "Name": "Content-Length", @@ -17884,7 +18257,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17903,49 +18276,16 @@ { "Name": "integrity", "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" }, { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Route": "_framework/System.Linq.Expressions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17953,41 +18293,8 @@ "Value": "no-cache" }, { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/mscorlib.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" + "Name": "Content-Encoding", + "Value": "gzip" }, { "Name": "Content-Length", @@ -18018,14 +18325,24 @@ ] }, { - "Route": "_framework/netstandard.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", - "Selectors": [], + "Route": "_framework/System.Linq.Expressions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -18051,12 +18368,16 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "Fake-License.txt.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Route": "_framework/System.Linq.Parallel.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18073,7 +18394,7 @@ }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18096,8 +18417,8 @@ ] }, { - "Route": "Fake-License.txt", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Route": "_framework/System.Linq.Parallel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18120,7 +18441,7 @@ }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18147,8 +18468,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Route": "_framework/System.Linq.Queryable.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18188,8 +18509,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Route": "_framework/System.Linq.Queryable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18239,8 +18560,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Route": "_framework/System.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18280,8 +18601,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Route": "_framework/System.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18331,8 +18652,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Route": "_framework/System.Memory.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18372,8 +18693,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Route": "_framework/System.Memory.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18423,8 +18744,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Route": "_framework/System.Net.Http.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18464,8 +18785,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Route": "_framework/System.Net.Http.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18515,8 +18836,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Route": "_framework/System.Net.Http.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18556,8 +18877,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Route": "_framework/System.Net.Http.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18607,8 +18928,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18648,8 +18969,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18699,8 +19020,8 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18740,8 +19061,8 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18791,8 +19112,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Route": "_framework/System.Net.NameResolution.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18809,7 +19130,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18832,8 +19153,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Route": "_framework/System.Net.NameResolution.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18856,7 +19177,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18883,8 +19204,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18924,8 +19245,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18975,8 +19296,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19016,8 +19337,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19067,8 +19388,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Route": "_framework/System.Net.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19108,8 +19429,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Route": "_framework/System.Net.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19159,8 +19480,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19200,8 +19521,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19251,8 +19572,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Route": "_framework/System.Net.Requests.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19292,8 +19613,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Route": "_framework/System.Net.Requests.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19343,8 +19664,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Route": "_framework/System.Net.Security.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19384,8 +19705,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Route": "_framework/System.Net.Security.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19435,8 +19756,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19476,8 +19797,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19527,8 +19848,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19568,8 +19889,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19619,8 +19940,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19660,8 +19981,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19711,8 +20032,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19752,8 +20073,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19803,8 +20124,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19844,8 +20165,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19895,8 +20216,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19936,8 +20257,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19987,8 +20308,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20028,8 +20349,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20079,8 +20400,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20120,8 +20441,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20171,8 +20492,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Route": "_framework/System.Net.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20212,8 +20533,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Route": "_framework/System.Net.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20263,8 +20584,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20304,8 +20625,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20355,8 +20676,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Route": "_framework/System.Numerics.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20396,8 +20717,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Route": "_framework/System.Numerics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20447,8 +20768,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20488,8 +20809,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20539,8 +20860,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20580,8 +20901,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20631,8 +20952,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20672,8 +20993,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20723,8 +21044,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20764,8 +21085,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20815,8 +21136,8 @@ ] }, { - "Route": "_framework/RazorClassLibrary.pdb.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20833,7 +21154,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -20856,8 +21177,8 @@ ] }, { - "Route": "_framework/RazorClassLibrary.pdb", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20880,7 +21201,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -20907,8 +21228,8 @@ ] }, { - "Route": "_framework/RazorClassLibrary.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20948,8 +21269,8 @@ ] }, { - "Route": "_framework/RazorClassLibrary.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20999,8 +21320,8 @@ ] }, { - "Route": "_framework/System.AppContext.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21040,8 +21361,8 @@ ] }, { - "Route": "_framework/System.AppContext.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21091,8 +21412,8 @@ ] }, { - "Route": "_framework/System.Buffers.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21132,8 +21453,8 @@ ] }, { - "Route": "_framework/System.Buffers.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21183,8 +21504,8 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21224,8 +21545,8 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21275,8 +21596,8 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Route": "_framework/System.Reflection.Emit.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21316,8 +21637,8 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Route": "_framework/System.Reflection.Emit.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21367,8 +21688,8 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21408,8 +21729,8 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21459,8 +21780,8 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21500,8 +21821,8 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21551,8 +21872,8 @@ ] }, { - "Route": "_framework/System.Collections.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Route": "_framework/System.Reflection.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21592,8 +21913,8 @@ ] }, { - "Route": "_framework/System.Collections.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Route": "_framework/System.Reflection.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21643,8 +21964,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21684,8 +22005,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21735,8 +22056,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Route": "_framework/System.Reflection.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21776,8 +22097,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Route": "_framework/System.Reflection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21827,8 +22148,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21868,8 +22189,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21919,8 +22240,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21960,8 +22281,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22011,8 +22332,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22052,8 +22373,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22103,8 +22424,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22144,8 +22465,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22195,8 +22516,8 @@ ] }, { - "Route": "_framework/System.Configuration.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22236,8 +22557,8 @@ ] }, { - "Route": "_framework/System.Configuration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22287,8 +22608,8 @@ ] }, { - "Route": "_framework/System.Console.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22328,8 +22649,8 @@ ] }, { - "Route": "_framework/System.Console.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22379,8 +22700,8 @@ ] }, { - "Route": "_framework/System.Core.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22420,8 +22741,8 @@ ] }, { - "Route": "_framework/System.Core.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22471,8 +22792,8 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22512,8 +22833,8 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22563,8 +22884,8 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22604,8 +22925,8 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22655,8 +22976,8 @@ ] }, { - "Route": "_framework/System.Data.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22696,8 +23017,8 @@ ] }, { - "Route": "_framework/System.Data.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22747,8 +23068,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22788,8 +23109,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22839,8 +23160,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22880,8 +23201,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22931,8 +23252,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22972,8 +23293,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23023,8 +23344,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23064,8 +23385,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23115,8 +23436,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23156,8 +23477,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23207,8 +23528,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23248,8 +23569,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23299,8 +23620,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23340,8 +23661,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23391,8 +23712,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23432,8 +23753,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23483,8 +23804,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Route": "_framework/System.Runtime.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23524,8 +23845,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Route": "_framework/System.Runtime.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23575,8 +23896,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23616,8 +23937,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23667,8 +23988,8 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23708,8 +24029,8 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23759,8 +24080,8 @@ ] }, { - "Route": "_framework/System.Drawing.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23800,8 +24121,8 @@ ] }, { - "Route": "_framework/System.Drawing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23851,8 +24172,8 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23892,8 +24213,8 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23943,8 +24264,8 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23984,8 +24305,8 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24035,8 +24356,8 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24076,8 +24397,8 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24127,8 +24448,8 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24168,8 +24489,8 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24219,8 +24540,8 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24260,8 +24581,8 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24311,8 +24632,8 @@ ] }, { - "Route": "_framework/System.Globalization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24352,8 +24673,8 @@ ] }, { - "Route": "_framework/System.Globalization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24403,8 +24724,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24444,8 +24765,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24495,8 +24816,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24536,8 +24857,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24587,8 +24908,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Route": "_framework/System.Security.Principal.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24628,8 +24949,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Route": "_framework/System.Security.Principal.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24679,8 +25000,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24720,8 +25041,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24771,8 +25092,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Route": "_framework/System.Security.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24812,8 +25133,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Route": "_framework/System.Security.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24863,8 +25184,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24904,8 +25225,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24955,8 +25276,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24996,8 +25317,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25047,8 +25368,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25088,8 +25409,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25139,8 +25460,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25180,8 +25501,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25231,8 +25552,8 @@ ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25272,8 +25593,8 @@ ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25323,8 +25644,8 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25364,8 +25685,8 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25415,8 +25736,8 @@ ] }, { - "Route": "_framework/System.IO.Pipelines.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Route": "_framework/System.Text.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25456,8 +25777,8 @@ ] }, { - "Route": "_framework/System.IO.Pipelines.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Route": "_framework/System.Text.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25507,8 +25828,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Route": "_framework/System.Text.RegularExpressions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25548,8 +25869,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Route": "_framework/System.Text.RegularExpressions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25599,8 +25920,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25640,8 +25961,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25691,8 +26012,8 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Route": "_framework/System.Threading.Channels.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25732,8 +26053,8 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Route": "_framework/System.Threading.Channels.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25783,8 +26104,8 @@ ] }, { - "Route": "_framework/System.IO.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Route": "_framework/System.Threading.Overlapped.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25824,8 +26145,8 @@ ] }, { - "Route": "_framework/System.IO.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Route": "_framework/System.Threading.Overlapped.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25875,8 +26196,8 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25916,8 +26237,8 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25967,8 +26288,8 @@ ] }, { - "Route": "_framework/System.Linq.Expressions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26008,8 +26329,8 @@ ] }, { - "Route": "_framework/System.Linq.Expressions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26059,8 +26380,8 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26100,8 +26421,8 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26151,8 +26472,8 @@ ] }, { - "Route": "_framework/System.Linq.Queryable.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26192,8 +26513,8 @@ ] }, { - "Route": "_framework/System.Linq.Queryable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26243,8 +26564,8 @@ ] }, { - "Route": "_framework/System.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Route": "_framework/System.Threading.Thread.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26284,8 +26605,8 @@ ] }, { - "Route": "_framework/System.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Route": "_framework/System.Threading.Thread.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26335,8 +26656,8 @@ ] }, { - "Route": "_framework/System.Memory.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26376,8 +26697,8 @@ ] }, { - "Route": "_framework/System.Memory.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26427,8 +26748,8 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26468,8 +26789,8 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26519,8 +26840,8 @@ ] }, { - "Route": "_framework/System.Net.Http.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Route": "_framework/System.Threading.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26560,8 +26881,8 @@ ] }, { - "Route": "_framework/System.Net.Http.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Route": "_framework/System.Threading.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26611,8 +26932,8 @@ ] }, { - "Route": "_framework/System.Net.HttpListener.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Route": "_framework/System.Transactions.Local.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26652,8 +26973,8 @@ ] }, { - "Route": "_framework/System.Net.HttpListener.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Route": "_framework/System.Transactions.Local.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26703,8 +27024,8 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Route": "_framework/System.Transactions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26744,8 +27065,8 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Route": "_framework/System.Transactions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26795,8 +27116,8 @@ ] }, { - "Route": "_framework/System.Net.NameResolution.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Route": "_framework/System.ValueTuple.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26836,8 +27157,8 @@ ] }, { - "Route": "_framework/System.Net.NameResolution.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Route": "_framework/System.ValueTuple.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26887,8 +27208,8 @@ ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Route": "_framework/System.Web.HttpUtility.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26928,8 +27249,8 @@ ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Route": "_framework/System.Web.HttpUtility.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26979,8 +27300,8 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Route": "_framework/System.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27020,8 +27341,8 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Route": "_framework/System.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27071,8 +27392,8 @@ ] }, { - "Route": "_framework/System.Net.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Route": "_framework/System.Windows.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27112,8 +27433,8 @@ ] }, { - "Route": "_framework/System.Net.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Route": "_framework/System.Windows.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27163,8 +27484,8 @@ ] }, { - "Route": "_framework/System.Net.Quic.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Route": "_framework/System.Xml.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27204,8 +27525,8 @@ ] }, { - "Route": "_framework/System.Net.Quic.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Route": "_framework/System.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27255,8 +27576,8 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27296,8 +27617,8 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27347,8 +27668,8 @@ ] }, { - "Route": "_framework/System.Net.Security.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27388,8 +27709,8 @@ ] }, { - "Route": "_framework/System.Net.Security.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27439,8 +27760,8 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Route": "_framework/System.Xml.XDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27480,8 +27801,8 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Route": "_framework/System.Xml.XDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27531,8 +27852,8 @@ ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27572,8 +27893,8 @@ ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27623,8 +27944,8 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27664,8 +27985,8 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27715,8 +28036,8 @@ ] }, { - "Route": "_framework/System.Net.WebClient.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27756,8 +28077,8 @@ ] }, { - "Route": "_framework/System.Net.WebClient.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27807,8 +28128,8 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27848,8 +28169,8 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27899,8 +28220,8 @@ ] }, { - "Route": "_framework/System.Net.WebProxy.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Route": "_framework/System.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27940,8 +28261,8 @@ ] }, { - "Route": "_framework/System.Net.WebProxy.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Route": "_framework/System.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27991,8 +28312,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Route": "_framework/System.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28032,8 +28353,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Route": "_framework/System.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28083,8 +28404,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Route": "_framework/WindowsBase.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28124,8 +28445,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Route": "_framework/WindowsBase.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28175,8 +28496,8 @@ ] }, { - "Route": "_framework/System.Net.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Route": "_framework/blazor.webassembly.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28193,7 +28514,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28216,8 +28537,8 @@ ] }, { - "Route": "_framework/System.Net.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28240,7 +28561,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28267,8 +28588,8 @@ ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Route": "_framework/blazorwasm.pdb.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28285,7 +28606,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28308,8 +28629,8 @@ ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Route": "_framework/blazorwasm.pdb", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28332,7 +28653,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28359,8 +28680,8 @@ ] }, { - "Route": "_framework/System.Numerics.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Route": "_framework/blazorwasm.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28400,8 +28721,8 @@ ] }, { - "Route": "_framework/System.Numerics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Route": "_framework/blazorwasm.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28451,8 +28772,8 @@ ] }, { - "Route": "_framework/System.ObjectModel.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Route": "_framework/dotnet.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28469,7 +28790,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28492,8 +28813,8 @@ ] }, { - "Route": "_framework/System.ObjectModel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Route": "_framework/dotnet.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28516,7 +28837,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28532,6 +28853,30 @@ } ], "EndpointProperties": [ + { + "Name": "PreloadAs", + "Value": "script" + }, + { + "Name": "PreloadCrossorigin", + "Value": "anonymous" + }, + { + "Name": "PreloadGroup", + "Value": "webassembly" + }, + { + "Name": "PreloadOrder", + "Value": "1" + }, + { + "Name": "PreloadPriority", + "Value": "high" + }, + { + "Name": "PreloadRel", + "Value": "preload" + }, { "Name": "integrity", "Value": "__integrity__" @@ -28543,8 +28888,8 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Route": "_framework/dotnet.js.map.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28561,7 +28906,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -28584,8 +28929,8 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Route": "_framework/dotnet.js.map", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28608,7 +28953,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -28635,8 +28980,8 @@ ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Route": "_framework/dotnet.native.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28653,7 +28998,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28676,8 +29021,8 @@ ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Route": "_framework/dotnet.native.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28700,7 +29045,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28727,8 +29072,8 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Route": "_framework/dotnet.native.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28768,8 +29113,8 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28819,8 +29164,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Route": "_framework/dotnet.runtime.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28837,7 +29182,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28860,8 +29205,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28884,7 +29229,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28911,8 +29256,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Route": "_framework/dotnet.runtime.js.map.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28929,7 +29274,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -28952,8 +29297,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Route": "_framework/dotnet.runtime.js.map", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28976,7 +29321,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -29003,8 +29348,8 @@ ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Route": "_framework/icudt_CJK.dat.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29021,7 +29366,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -29044,8 +29389,8 @@ ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29068,7 +29413,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -29095,8 +29440,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Route": "_framework/icudt_EFIGS.dat.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29113,7 +29458,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -29136,8 +29481,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29160,7 +29505,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -29187,8 +29532,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Route": "_framework/icudt_no_CJK.dat.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29205,7 +29550,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -29228,8 +29573,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29252,7 +29597,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -29279,8 +29624,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Route": "_framework/mscorlib.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29320,8 +29665,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Route": "_framework/mscorlib.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29371,8 +29716,8 @@ ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Route": "_framework/netstandard.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29412,8 +29757,8 @@ ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Route": "_framework/netstandard.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29463,8 +29808,8 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Route": "blazorwasm.lib.module.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm.lib.module.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29481,7 +29826,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29504,8 +29849,8 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Route": "blazorwasm.lib.module.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm.lib.module.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29528,7 +29873,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29544,6 +29889,10 @@ } ], "EndpointProperties": [ + { + "Name": "dependency-group", + "Value": "js-initializer" + }, { "Name": "integrity", "Value": "__integrity__" @@ -29551,12 +29900,16 @@ { "Name": "original-resource", "Value": "__original-resource__" + }, + { + "Name": "script-type", + "Value": "module" } ] }, { - "Route": "_framework/System.Reflection.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Route": "css/app.css.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29573,7 +29926,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -29596,8 +29949,8 @@ ] }, { - "Route": "_framework/System.Reflection.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29620,7 +29973,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -29647,8 +30000,8 @@ ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Route": "custom-service-worker-assets.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29665,7 +30018,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29688,8 +30041,8 @@ ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Route": "custom-service-worker-assets.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29712,7 +30065,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29739,8 +30092,8 @@ ] }, { - "Route": "_framework/System.Reflection.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Route": "index.html.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29757,7 +30110,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/html" }, { "Name": "ETag", @@ -29780,8 +30133,8 @@ ] }, { - "Route": "_framework/System.Reflection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Route": "index.html", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29804,7 +30157,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/html" }, { "Name": "ETag", @@ -29831,8 +30184,8 @@ ] }, { - "Route": "_framework/System.Resources.Reader.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Route": "serviceworkers/my-service-worker.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29849,7 +30202,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29872,8 +30225,8 @@ ] }, { - "Route": "_framework/System.Resources.Reader.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Route": "serviceworkers/my-service-worker.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29896,7 +30249,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29923,25 +30276,21 @@ ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", + "Route": "_framework/dotnet.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29957,6 +30306,30 @@ } ], "EndpointProperties": [ + { + "Name": "PreloadAs", + "Value": "script" + }, + { + "Name": "PreloadCrossorigin", + "Value": "anonymous" + }, + { + "Name": "PreloadGroup", + "Value": "webassembly" + }, + { + "Name": "PreloadOrder", + "Value": "1" + }, + { + "Name": "PreloadPriority", + "Value": "high" + }, + { + "Name": "PreloadRel", + "Value": "preload" + }, { "Name": "integrity", "Value": "__integrity__" @@ -29964,31 +30337,21 @@ ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -30007,33 +30370,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.Writer.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", + "Route": "custom-service-worker-assets.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -30056,24 +30411,51 @@ ] }, { - "Route": "_framework/System.Resources.Writer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", - "Selectors": [ + "Route": "serviceworkers/my-service-worker.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30099,26 +30481,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30148,24 +30522,14 @@ ] }, { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30191,26 +30555,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30240,24 +30596,14 @@ ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Components.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30283,26 +30629,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30332,24 +30670,14 @@ ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.CSharp.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30375,26 +30703,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Handles.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30424,24 +30744,51 @@ ] }, { - "Route": "_framework/System.Runtime.Handles.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30467,26 +30814,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30516,24 +30855,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30559,26 +30888,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30608,24 +30929,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30651,26 +30962,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30700,24 +31003,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30743,26 +31036,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30792,24 +31077,51 @@ ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30835,26 +31147,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Loader.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Logging.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30884,24 +31188,51 @@ ] }, { - "Route": "_framework/System.Runtime.Loader.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.Extensions.Options.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Extensions.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30927,26 +31258,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Numerics.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30976,24 +31299,51 @@ ] }, { - "Route": "_framework/System.Runtime.Numerics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.JSInterop.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.VisualBasic.Core.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31019,26 +31369,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "Route": "_framework/Microsoft.VisualBasic.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31068,24 +31410,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Win32.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31111,26 +31443,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "Route": "_framework/Microsoft.Win32.Registry.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31160,24 +31484,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/RazorClassLibrary.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31203,26 +31517,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "Route": "_framework/System.AppContext.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31252,24 +31558,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Buffers.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31295,26 +31591,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "Route": "_framework/System.Collections.Concurrent.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31344,24 +31632,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Collections.Immutable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31387,26 +31665,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", + "Route": "_framework/System.Collections.NonGeneric.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31436,24 +31706,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Collections.Specialized.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31479,26 +31739,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", + "Route": "_framework/System.Collections.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31528,24 +31780,14 @@ ] }, { - "Route": "_framework/System.Runtime.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ComponentModel.Annotations.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31571,26 +31813,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31620,24 +31854,51 @@ ] }, { - "Route": "_framework/System.Security.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", - "Selectors": [ + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.ComponentModel.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31663,26 +31924,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Claims.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", + "Route": "_framework/System.ComponentModel.TypeConverter.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31712,24 +31965,51 @@ ] }, { - "Route": "_framework/System.Security.Claims.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", - "Selectors": [ + "Route": "_framework/System.ComponentModel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Configuration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31755,26 +32035,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "Route": "_framework/System.Console.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31804,24 +32076,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Core.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31847,26 +32109,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "Route": "_framework/System.Data.Common.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31896,24 +32150,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Data.DataSetExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31939,26 +32183,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "Route": "_framework/System.Data.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31988,24 +32224,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Diagnostics.Contracts.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32031,26 +32257,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "Route": "_framework/System.Diagnostics.Debug.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32080,24 +32298,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32123,26 +32368,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "Route": "_framework/System.Diagnostics.Process.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32172,24 +32409,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Diagnostics.StackTrace.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32215,26 +32479,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "Route": "_framework/System.Diagnostics.Tools.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32264,24 +32520,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Diagnostics.TraceSource.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.Tracing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32307,26 +32590,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "Route": "_framework/System.Drawing.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32356,24 +32631,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Drawing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32399,26 +32664,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", + "Route": "_framework/System.Dynamic.Runtime.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32448,24 +32705,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Formats.Asn1.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32491,26 +32738,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", + "Route": "_framework/System.Formats.Tar.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32540,24 +32779,14 @@ ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Globalization.Calendars.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32583,26 +32812,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Principal.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", + "Route": "_framework/System.Globalization.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32632,24 +32853,14 @@ ] }, { - "Route": "_framework/System.Security.Principal.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Globalization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32675,26 +32886,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.SecureString.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", + "Route": "_framework/System.IO.Compression.Brotli.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32724,24 +32927,14 @@ ] }, { - "Route": "_framework/System.Security.SecureString.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Compression.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32767,26 +32960,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", + "Route": "_framework/System.IO.Compression.ZipFile.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32816,24 +33001,14 @@ ] }, { - "Route": "_framework/System.Security.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Compression.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32859,26 +33034,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceModel.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32908,24 +33075,51 @@ ] }, { - "Route": "_framework/System.ServiceModel.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", - "Selectors": [ + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.FileSystem.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32951,26 +33145,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceProcess.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", + "Route": "_framework/System.IO.FileSystem.Watcher.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33000,24 +33186,51 @@ ] }, { - "Route": "_framework/System.ServiceProcess.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", - "Selectors": [ + "Route": "_framework/System.IO.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.IsolatedStorage.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33043,26 +33256,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "Route": "_framework/System.IO.MemoryMappedFiles.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33092,24 +33297,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Pipelines.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33135,26 +33330,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "Route": "_framework/System.IO.Pipes.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33184,24 +33371,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Pipes.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33227,26 +33404,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33276,24 +33445,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33319,26 +33478,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", + "Route": "_framework/System.Linq.AsyncEnumerable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33368,24 +33519,51 @@ ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Linq.Expressions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Linq.Parallel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33411,26 +33589,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", + "Route": "_framework/System.Linq.Queryable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33460,24 +33630,51 @@ ] }, { - "Route": "_framework/System.Text.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Memory.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33503,26 +33700,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", + "Route": "_framework/System.Net.Http.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33552,24 +33741,51 @@ ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.Http.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.HttpListener.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33595,26 +33811,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33644,24 +33852,14 @@ ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.NameResolution.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33687,26 +33885,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Channels.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33736,24 +33926,14 @@ ] }, { - "Route": "_framework/System.Threading.Channels.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Ping.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33779,26 +33959,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", + "Route": "_framework/System.Net.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33828,24 +34000,14 @@ ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Quic.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33871,26 +34033,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "Route": "_framework/System.Net.Requests.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33920,24 +34074,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Security.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33963,26 +34107,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34012,24 +34148,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.ServicePoint.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34055,26 +34181,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34104,24 +34222,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.WebClient.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34147,26 +34255,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34196,24 +34296,51 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.WebProxy.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.WebSockets.Client.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34239,26 +34366,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Thread.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34288,24 +34407,51 @@ ] }, { - "Route": "_framework/System.Threading.Thread.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Numerics.Vectors.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34331,26 +34477,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", + "Route": "_framework/System.Numerics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34380,24 +34518,14 @@ ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ObjectModel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34423,26 +34551,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Timer.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34472,24 +34592,14 @@ ] }, { - "Route": "_framework/System.Threading.Timer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Private.DataContractSerialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34515,26 +34625,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34564,24 +34666,14 @@ ] }, { - "Route": "_framework/System.Threading.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Private.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34607,26 +34699,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.Local.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34656,24 +34740,51 @@ ] }, { - "Route": "_framework/System.Transactions.Local.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.DispatchProxy.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34699,26 +34810,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34748,24 +34851,51 @@ ] }, { - "Route": "_framework/System.Transactions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.Emit.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Reflection.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34791,26 +34921,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ValueTuple.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34840,24 +34962,51 @@ ] }, { - "Route": "_framework/System.ValueTuple.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Reflection.TypeExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34883,26 +35032,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", + "Route": "_framework/System.Reflection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34932,24 +35073,14 @@ ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Resources.Reader.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34975,26 +35106,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35024,24 +35147,14 @@ ] }, { - "Route": "_framework/System.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Resources.Writer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35067,26 +35180,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Windows.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35116,24 +35221,14 @@ ] }, { - "Route": "_framework/System.Windows.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35159,26 +35254,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35208,24 +35295,14 @@ ] }, { - "Route": "_framework/System.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Handles.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35251,26 +35328,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35300,24 +35369,14 @@ ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35343,26 +35402,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.Serialization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35392,24 +35443,14 @@ ] }, { - "Route": "_framework/System.Xml.Serialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Intrinsics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35435,26 +35476,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35484,24 +35517,51 @@ ] }, { - "Route": "_framework/System.Xml.XDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Runtime.Numerics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35527,26 +35587,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35576,24 +35628,51 @@ ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.Serialization.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35619,26 +35698,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35668,24 +35739,14 @@ ] }, { - "Route": "_framework/System.Xml.XPath.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35711,26 +35772,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35760,24 +35813,14 @@ ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Claims.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35803,26 +35846,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35852,24 +35887,14 @@ ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Cryptography.Cng.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35895,26 +35920,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35944,24 +35961,51 @@ ] }, { - "Route": "_framework/System.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Cryptography.Encoding.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35987,26 +36031,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36036,24 +36072,51 @@ ] }, { - "Route": "_framework/System.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Cryptography.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36079,26 +36142,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/WindowsBase.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36128,24 +36183,51 @@ ] }, { - "Route": "_framework/WindowsBase.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Principal.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.SecureString.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36171,33 +36253,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazor.webassembly.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "Route": "_framework/System.Security.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36220,31 +36294,21 @@ ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ServiceModel.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36263,33 +36327,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm.pdb.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", + "Route": "_framework/System.ServiceProcess.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36312,31 +36368,21 @@ ] }, { - "Route": "_framework/blazorwasm.pdb", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.Encoding.CodePages.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36355,26 +36401,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36404,24 +36442,14 @@ ] }, { - "Route": "_framework/blazorwasm.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.Encoding.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36447,33 +36475,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36496,31 +36516,21 @@ ] }, { - "Route": "_framework/dotnet.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36537,59 +36547,64 @@ ], "EndpointProperties": [ { - "Name": "PreloadAs", - "Value": "script" - }, + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Text.RegularExpressions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "PreloadCrossorigin", - "Value": "anonymous" + "Name": "Cache-Control", + "Value": "no-cache" }, { - "Name": "PreloadGroup", - "Value": "webassembly" + "Name": "Content-Length", + "Value": "__content-length__" }, { - "Name": "PreloadOrder", - "Value": "1" + "Name": "Content-Type", + "Value": "application/wasm" }, { - "Name": "PreloadPriority", - "Value": "high" + "Name": "ETag", + "Value": "__etag__" }, { - "Name": "PreloadRel", - "Value": "preload" + "Name": "Last-Modified", + "Value": "__last-modified__" }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.map.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", + "Route": "_framework/System.Threading.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36612,31 +36627,21 @@ ] }, { - "Route": "_framework/dotnet.js.map", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Channels.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36655,33 +36660,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", + "Route": "_framework/System.Threading.Overlapped.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36704,31 +36701,21 @@ ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36747,26 +36734,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36796,24 +36775,51 @@ ] }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Threading.Tasks.Parallel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Threading.Tasks.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36839,33 +36845,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", + "Route": "_framework/System.Threading.Thread.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36888,31 +36886,21 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.ThreadPool.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36931,33 +36919,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.map.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", + "Route": "_framework/System.Threading.Timer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36980,31 +36960,21 @@ ] }, { - "Route": "_framework/dotnet.runtime.js.map", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37023,33 +36993,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_CJK.dat.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "Route": "_framework/System.Transactions.Local.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37072,31 +37034,21 @@ ] }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Transactions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37115,33 +37067,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_EFIGS.dat.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "Route": "_framework/System.ValueTuple.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37164,31 +37108,58 @@ ] }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", - "Selectors": [ + "Route": "_framework/System.Web.HttpUtility.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37207,33 +37178,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_no_CJK.dat.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "Route": "_framework/System.Windows.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37256,31 +37219,58 @@ ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", - "Selectors": [ + "Route": "_framework/System.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Xml.ReaderWriter.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37299,26 +37289,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/mscorlib.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37348,24 +37330,51 @@ ] }, { - "Route": "_framework/mscorlib.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Xml.XDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37391,26 +37400,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/netstandard.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37440,24 +37441,14 @@ ] }, { - "Route": "_framework/netstandard.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.XmlDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37483,33 +37474,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "blazorwasm.lib.module.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm.lib.module.js.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37532,31 +37515,21 @@ ] }, { - "Route": "blazorwasm.lib.module.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm.lib.module.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37572,44 +37545,65 @@ } ], "EndpointProperties": [ - { - "Name": "dependency-group", - "Value": "js-initializer" - }, { "Name": "integrity", "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" }, { - "Name": "original-resource", - "Value": "__original-resource__" + "Name": "Content-Length", + "Value": "__content-length__" }, { - "Name": "script-type", - "Value": "module" + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" } ] }, { - "Route": "css/app.css.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", + "Route": "_framework/WindowsBase.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37632,31 +37626,21 @@ ] }, { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/blazorwasm.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37675,33 +37659,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "custom-service-worker-assets.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", + "Route": "_framework/mscorlib.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37724,31 +37700,21 @@ ] }, { - "Route": "custom-service-worker-assets.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/netstandard.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37767,33 +37733,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "index.html.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", + "Route": "Fake-License.txt", + "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "text/plain" }, { "Name": "ETag", @@ -37816,31 +37774,21 @@ ] }, { - "Route": "index.html", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "blazorwasm.lib.module.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "text/javascript" }, { "Name": "ETag", @@ -37856,36 +37804,36 @@ } ], "EndpointProperties": [ + { + "Name": "dependency-group", + "Value": "js-initializer" + }, { "Name": "integrity", "Value": "__integrity__" }, { - "Name": "original-resource", - "Value": "__original-resource__" + "Name": "script-type", + "Value": "module" } ] }, { - "Route": "serviceworkers/my-service-worker.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/css" }, { "Name": "ETag", @@ -37908,31 +37856,58 @@ ] }, { - "Route": "serviceworkers/my-service-worker.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", - "Selectors": [ + "Route": "index.html", + "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/html" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/RazorClassLibrary.pdb", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -37951,22 +37926,22 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Route": "_content/RazorClassLibrary/razorclasslibrary.lib.module.js.gz", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\razorclasslibrary.lib.module.js.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37996,14 +37971,24 @@ ] }, { - "Route": "custom-service-worker-assets.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", - "Selectors": [], + "Route": "_content/RazorClassLibrary/razorclasslibrary.lib.module.js", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\razorclasslibrary.lib.module.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -38026,28 +38011,44 @@ } ], "EndpointProperties": [ + { + "Name": "dependency-group", + "Value": "js-initializer" + }, { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" + }, + { + "Name": "script-type", + "Value": "module" } ] }, { - "Route": "serviceworkers/my-service-worker.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", + "Route": "_content/RazorClassLibrary/styles.css.gz", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/css" }, { "Name": "ETag", @@ -38070,21 +38071,31 @@ ] }, { - "Route": "Fake-License.txt", - "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", - "Selectors": [], + "Route": "_content/RazorClassLibrary/styles.css", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "text/css" }, { "Name": "ETag", @@ -38103,18 +38114,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "blazorwasm.lib.module.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js", + "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js.gz", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -38138,22 +38157,65 @@ ], "EndpointProperties": [ { - "Name": "dependency-group", - "Value": "js-initializer" + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ { "Name": "integrity", "Value": "__integrity__" }, { - "Name": "script-type", - "Value": "module" + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", + "Route": "_content/RazorClassLibrary/razorclasslibrary.lib.module.js", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\razorclasslibrary.lib.module.js", "Selectors": [], "ResponseHeaders": [ { @@ -38166,7 +38228,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/javascript" }, { "Name": "ETag", @@ -38182,15 +38244,23 @@ } ], "EndpointProperties": [ + { + "Name": "dependency-group", + "Value": "js-initializer" + }, { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "script-type", + "Value": "module" } ] }, { - "Route": "index.html", - "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", + "Route": "_content/RazorClassLibrary/styles.css", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "Selectors": [], "ResponseHeaders": [ { @@ -38203,7 +38273,7 @@ }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "text/css" }, { "Name": "ETag", @@ -38226,18 +38296,14 @@ ] }, { - "Route": "_content/RazorClassLibrary/razorclasslibrary.lib.module.js.gz", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\razorclasslibrary.lib.module.js.gz", + "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -38267,31 +38333,21 @@ ] }, { - "Route": "_content/RazorClassLibrary/razorclasslibrary.lib.module.js", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\razorclasslibrary.lib.module.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/dotnet.js.map", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/plain" }, { "Name": "ETag", @@ -38307,44 +38363,28 @@ } ], "EndpointProperties": [ - { - "Name": "dependency-group", - "Value": "js-initializer" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" - }, - { - "Name": "script-type", - "Value": "module" } ] }, { - "Route": "_content/RazorClassLibrary/styles.css.gz", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/javascript" }, { "Name": "ETag", @@ -38367,31 +38407,21 @@ ] }, { - "Route": "_content/RazorClassLibrary/styles.css", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -38410,26 +38440,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js.gz", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -38459,31 +38481,21 @@ ] }, { - "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/dotnet.runtime.js.map", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/plain" }, { "Name": "ETag", @@ -38502,16 +38514,12 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_content/RazorClassLibrary/razorclasslibrary.lib.module.js", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\razorclasslibrary.lib.module.js", + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "Selectors": [], "ResponseHeaders": [ { @@ -38524,7 +38532,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -38540,23 +38548,15 @@ } ], "EndpointProperties": [ - { - "Name": "dependency-group", - "Value": "js-initializer" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "script-type", - "Value": "module" } ] }, { - "Route": "_content/RazorClassLibrary/styles.css", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "Selectors": [], "ResponseHeaders": [ { @@ -38569,7 +38569,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -38592,8 +38592,8 @@ ] }, { - "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "Selectors": [], "ResponseHeaders": [ { @@ -38606,7 +38606,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/octet-stream" }, { "Name": "ETag", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json index 33ac5ec7cafa..80d86fa53594 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json @@ -228,12 +228,6 @@ "${OutputPath}\\wwwroot\\index.html.br", "${OutputPath}\\wwwroot\\index.html.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", @@ -446,6 +440,12 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm-minimal.wasm", "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt", "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.br", "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.gz", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json index deaec923473e..451e4411c793 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json @@ -39,144 +39,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", @@ -204,7 +66,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Publish", @@ -212,7 +74,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -227,7 +89,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Publish", @@ -235,7 +97,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -250,7 +112,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Publish", @@ -258,7 +120,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -3363,14 +3225,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3386,14 +3248,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3409,14 +3271,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3432,14 +3294,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3455,14 +3317,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3478,14 +3340,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3501,14 +3363,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3524,14 +3386,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3547,14 +3409,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3723,7 +3585,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Publish", @@ -3746,7 +3608,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Publish", @@ -3769,7 +3631,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Publish", @@ -3792,7 +3654,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Publish", @@ -3815,7 +3677,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Publish", @@ -3838,7 +3700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Publish", @@ -3861,7 +3723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Publish", @@ -3884,7 +3746,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Publish", @@ -3907,7 +3769,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Publish", @@ -3930,7 +3792,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Publish", @@ -3953,7 +3815,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Publish", @@ -3976,7 +3838,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Publish", @@ -3999,7 +3861,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Publish", @@ -4022,7 +3884,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Publish", @@ -4045,7 +3907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Publish", @@ -4068,7 +3930,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Publish", @@ -4091,7 +3953,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Publish", @@ -4114,7 +3976,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Publish", @@ -4137,7 +3999,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Publish", @@ -4160,7 +4022,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Publish", @@ -4183,7 +4045,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Publish", @@ -4206,7 +4068,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Publish", @@ -4229,7 +4091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Publish", @@ -4252,7 +4114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Publish", @@ -4275,7 +4137,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Publish", @@ -4298,7 +4160,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Publish", @@ -4321,7 +4183,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Publish", @@ -4344,7 +4206,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Publish", @@ -4367,7 +4229,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Publish", @@ -4390,7 +4252,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Publish", @@ -4413,7 +4275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Publish", @@ -4436,7 +4298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Console.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Publish", @@ -4459,7 +4321,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Publish", @@ -4482,7 +4344,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Publish", @@ -4505,7 +4367,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Publish", @@ -4528,7 +4390,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Publish", @@ -4551,7 +4413,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Publish", @@ -4574,7 +4436,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Publish", @@ -4597,7 +4459,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Memory.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Publish", @@ -4620,7 +4482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Net.Http.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Publish", @@ -4643,7 +4505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ObjectModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Publish", @@ -4666,7 +4528,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Publish", @@ -4689,7 +4551,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.Uri.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Publish", @@ -4712,7 +4574,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Publish", @@ -4735,7 +4597,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Publish", @@ -4758,7 +4620,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Publish", @@ -4781,7 +4643,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Publish", @@ -4804,7 +4666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Publish", @@ -4827,7 +4689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Publish", @@ -4850,7 +4712,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Publish", @@ -4873,7 +4735,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Publish", @@ -4896,7 +4758,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Publish", @@ -4919,7 +4781,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Publish", @@ -4942,7 +4804,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Claims.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Publish", @@ -4965,7 +4827,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Publish", @@ -4988,7 +4850,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Publish", @@ -5011,7 +4873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Publish", @@ -5034,7 +4896,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Publish", @@ -5057,7 +4919,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Publish", @@ -5080,7 +4942,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Publish", @@ -5103,7 +4965,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Publish", @@ -5126,7 +4988,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.wasm", "AssetKind": "Publish", @@ -5149,7 +5011,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm-minimal.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.wasm", "AssetKind": "Publish", @@ -5172,7 +5034,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Publish", @@ -5259,234 +5121,150 @@ "OriginalItemSpec": "wwwroot\\index.html", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" - } - ], - "Endpoints": [ - { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + } + ], + "Endpoints": [ + { + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -5499,7 +5277,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/javascript" }, { "Name": "ETag", @@ -22153,6 +21931,228 @@ "Value": "__integrity__" } ] + }, + { + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] } ] } \ No newline at end of file diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json index 52d41eca596b..40259906e14f 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json @@ -225,12 +225,6 @@ "${OutputPath}\\wwwroot\\index.html.br", "${OutputPath}\\wwwroot\\index.html.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", @@ -440,6 +434,12 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm-minimal.wasm", "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm.br", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json index e88d9f4ca556..f763abb39bd4 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json @@ -39,144 +39,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", @@ -204,7 +66,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Publish", @@ -212,7 +74,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -227,7 +89,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Publish", @@ -235,7 +97,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -250,7 +112,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Publish", @@ -258,7 +120,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -3317,14 +3179,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3340,14 +3202,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3363,14 +3225,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3386,14 +3248,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3409,14 +3271,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3432,14 +3294,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3455,14 +3317,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3478,14 +3340,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3501,14 +3363,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3654,7 +3516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Publish", @@ -3677,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Publish", @@ -3700,7 +3562,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Publish", @@ -3723,7 +3585,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Publish", @@ -3746,7 +3608,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Publish", @@ -3769,7 +3631,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Publish", @@ -3792,7 +3654,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Publish", @@ -3815,7 +3677,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Publish", @@ -3838,7 +3700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Publish", @@ -3861,7 +3723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Publish", @@ -3884,7 +3746,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Publish", @@ -3907,7 +3769,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Publish", @@ -3930,7 +3792,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Publish", @@ -3953,7 +3815,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Publish", @@ -3976,7 +3838,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Publish", @@ -3999,7 +3861,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Publish", @@ -4022,7 +3884,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Publish", @@ -4045,7 +3907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Publish", @@ -4068,7 +3930,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Publish", @@ -4091,7 +3953,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Publish", @@ -4114,7 +3976,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Publish", @@ -4137,7 +3999,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Publish", @@ -4160,7 +4022,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Publish", @@ -4183,7 +4045,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Publish", @@ -4206,7 +4068,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Publish", @@ -4229,7 +4091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Publish", @@ -4252,7 +4114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Publish", @@ -4275,7 +4137,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Publish", @@ -4298,7 +4160,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Publish", @@ -4321,7 +4183,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Publish", @@ -4344,7 +4206,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Publish", @@ -4367,7 +4229,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Console.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Publish", @@ -4390,7 +4252,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Publish", @@ -4413,7 +4275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Publish", @@ -4436,7 +4298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Publish", @@ -4459,7 +4321,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Publish", @@ -4482,7 +4344,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Publish", @@ -4505,7 +4367,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Publish", @@ -4528,7 +4390,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Memory.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Publish", @@ -4551,7 +4413,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Net.Http.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Publish", @@ -4574,7 +4436,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ObjectModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Publish", @@ -4597,7 +4459,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Publish", @@ -4620,7 +4482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.Uri.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Publish", @@ -4643,7 +4505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Publish", @@ -4666,7 +4528,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Publish", @@ -4689,7 +4551,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Publish", @@ -4712,7 +4574,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Publish", @@ -4735,7 +4597,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Publish", @@ -4758,7 +4620,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Publish", @@ -4781,7 +4643,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Publish", @@ -4804,7 +4666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Publish", @@ -4827,7 +4689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Publish", @@ -4850,7 +4712,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Publish", @@ -4873,7 +4735,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Claims.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Publish", @@ -4896,7 +4758,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Publish", @@ -4919,7 +4781,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Publish", @@ -4942,7 +4804,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Publish", @@ -4965,7 +4827,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Publish", @@ -4988,7 +4850,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Publish", @@ -5011,7 +4873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Publish", @@ -5034,7 +4896,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Publish", @@ -5057,7 +4919,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.wasm", "AssetKind": "Publish", @@ -5080,7 +4942,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm-minimal.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.wasm", "AssetKind": "Publish", @@ -5103,7 +4965,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Publish", @@ -5190,234 +5052,150 @@ "OriginalItemSpec": "wwwroot\\index.html", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" - } - ], - "Endpoints": [ - { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + } + ], + "Endpoints": [ + { + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -5430,7 +5208,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/javascript" }, { "Name": "ETag", @@ -21863,6 +21641,228 @@ "Value": "__integrity__" } ] + }, + { + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] } ] } \ No newline at end of file diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json index a44482a27aa8..eb3641eeb283 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json @@ -161,144 +161,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", "SourceId": "blazorwasm", @@ -349,7 +211,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Publish", @@ -357,7 +219,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -372,7 +234,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Publish", @@ -380,7 +242,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -395,7 +257,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Publish", @@ -403,7 +265,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -3577,14 +3439,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3600,14 +3462,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3623,14 +3485,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3646,14 +3508,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3669,14 +3531,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3692,14 +3554,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3715,14 +3577,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3738,14 +3600,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3761,14 +3623,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -4075,7 +3937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Publish", @@ -4098,7 +3960,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Publish", @@ -4121,7 +3983,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Publish", @@ -4144,7 +4006,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Publish", @@ -4167,7 +4029,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Publish", @@ -4190,7 +4052,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Publish", @@ -4213,7 +4075,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Publish", @@ -4236,7 +4098,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Publish", @@ -4259,7 +4121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Publish", @@ -4282,7 +4144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Publish", @@ -4305,7 +4167,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Publish", @@ -4328,7 +4190,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Publish", @@ -4351,7 +4213,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Publish", @@ -4374,7 +4236,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Publish", @@ -4397,7 +4259,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Publish", @@ -4420,7 +4282,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Publish", @@ -4443,7 +4305,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Publish", @@ -4466,7 +4328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Publish", @@ -4489,7 +4351,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Publish", @@ -4512,7 +4374,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Publish", @@ -4535,7 +4397,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Publish", @@ -4558,7 +4420,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Publish", @@ -4581,7 +4443,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Publish", @@ -4604,7 +4466,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\RazorClassLibrary.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.wasm", "AssetKind": "Publish", @@ -4627,7 +4489,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Publish", @@ -4650,7 +4512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Publish", @@ -4673,7 +4535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Publish", @@ -4696,7 +4558,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Publish", @@ -4719,7 +4581,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Publish", @@ -4742,7 +4604,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Publish", @@ -4765,7 +4627,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Publish", @@ -4788,7 +4650,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Publish", @@ -4811,7 +4673,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Console.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Publish", @@ -4834,7 +4696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Publish", @@ -4857,7 +4719,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Publish", @@ -4880,7 +4742,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Publish", @@ -4903,7 +4765,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Publish", @@ -4926,7 +4788,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Publish", @@ -4949,7 +4811,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Publish", @@ -4972,7 +4834,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Memory.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Publish", @@ -4995,7 +4857,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Net.Http.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Publish", @@ -5018,7 +4880,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ObjectModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Publish", @@ -5041,7 +4903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Publish", @@ -5064,7 +4926,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.Uri.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Publish", @@ -5087,7 +4949,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Publish", @@ -5110,7 +4972,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Publish", @@ -5133,7 +4995,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Publish", @@ -5156,7 +5018,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Publish", @@ -5179,7 +5041,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Publish", @@ -5202,7 +5064,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Publish", @@ -5225,7 +5087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Publish", @@ -5248,7 +5110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Publish", @@ -5271,7 +5133,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Publish", @@ -5294,7 +5156,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Publish", @@ -5317,7 +5179,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Claims.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Publish", @@ -5340,7 +5202,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Publish", @@ -5363,7 +5225,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Publish", @@ -5386,7 +5248,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Publish", @@ -5409,7 +5271,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Publish", @@ -5432,7 +5294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Publish", @@ -5455,7 +5317,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Publish", @@ -5478,7 +5340,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Publish", @@ -5501,7 +5363,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.wasm", "AssetKind": "Publish", @@ -5524,7 +5386,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.wasm", "AssetKind": "Publish", @@ -5547,7 +5409,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Publish", @@ -5772,104 +5634,150 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" - } - ], - "Endpoints": [ - { - "Route": "blazorhosted.modules.json.br", - "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\compressed\\publish\\blazorhosted.modules.json.br", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "br" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/json" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] }, { - "Route": "blazorhosted.modules.json", - "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\compressed\\publish\\blazorhosted.modules.json.br", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "br", - "Quality": "__quality__" - } - ], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "br" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/json" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "blazorhosted.modules.json.gz", - "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\compressed\\publish\\blazorhosted.modules.json.gz", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + } + ], + "Endpoints": [ + { + "Route": "blazorhosted.modules.json.br", + "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\compressed\\publish\\blazorhosted.modules.json.br", "Selectors": [], "ResponseHeaders": [ { @@ -5878,7 +5786,7 @@ }, { "Name": "Content-Encoding", - "Value": "gzip" + "Value": "br" }, { "Name": "Content-Length", @@ -5910,11 +5818,11 @@ }, { "Route": "blazorhosted.modules.json", - "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\compressed\\publish\\blazorhosted.modules.json.gz", + "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\compressed\\publish\\blazorhosted.modules.json.br", "Selectors": [ { "Name": "Content-Encoding", - "Value": "gzip", + "Value": "br", "Quality": "__quality__" } ], @@ -5925,7 +5833,7 @@ }, { "Name": "Content-Encoding", - "Value": "gzip" + "Value": "br" }, { "Name": "Content-Length", @@ -5960,119 +5868,8 @@ ] }, { - "Route": "blazorhosted.modules.json", - "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/json" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "Route": "blazorhosted.modules.json.gz", + "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\compressed\\publish\\blazorhosted.modules.json.gz", "Selectors": [], "ResponseHeaders": [ { @@ -6080,41 +5877,8 @@ "Value": "no-cache" }, { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" + "Name": "Content-Encoding", + "Value": "gzip" }, { "Name": "Content-Length", @@ -6122,7 +5886,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/json" }, { "Name": "ETag", @@ -6145,21 +5909,31 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], + "Route": "blazorhosted.modules.json", + "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\compressed\\publish\\blazorhosted.modules.json.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/json" }, { "Name": "ETag", @@ -6178,12 +5952,16 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Route": "blazorhosted.modules.json", + "AssetFile": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json", "Selectors": [], "ResponseHeaders": [ { @@ -6196,7 +5974,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/json" }, { "Name": "ETag", @@ -6219,8 +5997,8 @@ ] }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", "Selectors": [], "ResponseHeaders": [ { @@ -6233,7 +6011,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/css" }, { "Name": "ETag", @@ -6256,8 +6034,8 @@ ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -6270,7 +6048,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/javascript" }, { "Name": "ETag", @@ -24213,6 +23991,228 @@ "Value": "__integrity__" } ] + }, + { + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] } ] } \ No newline at end of file diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json index 52d41eca596b..40259906e14f 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json @@ -225,12 +225,6 @@ "${OutputPath}\\wwwroot\\index.html.br", "${OutputPath}\\wwwroot\\index.html.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", @@ -440,6 +434,12 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm-minimal.wasm", "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm.br", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json index 51081628f6c8..bb6a4c00d0e7 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json @@ -39,144 +39,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", @@ -204,7 +66,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Publish", @@ -212,7 +74,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -227,7 +89,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Publish", @@ -235,7 +97,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -250,7 +112,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Publish", @@ -258,7 +120,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -3317,14 +3179,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3340,14 +3202,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3363,14 +3225,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3386,14 +3248,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3409,14 +3271,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3432,14 +3294,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3455,14 +3317,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3478,14 +3340,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3501,14 +3363,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3654,7 +3516,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Publish", @@ -3677,7 +3539,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Publish", @@ -3700,7 +3562,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Publish", @@ -3723,7 +3585,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Publish", @@ -3746,7 +3608,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Publish", @@ -3769,7 +3631,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Publish", @@ -3792,7 +3654,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Publish", @@ -3815,7 +3677,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Publish", @@ -3838,7 +3700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Publish", @@ -3861,7 +3723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Publish", @@ -3884,7 +3746,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Publish", @@ -3907,7 +3769,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Publish", @@ -3930,7 +3792,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Publish", @@ -3953,7 +3815,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Publish", @@ -3976,7 +3838,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Publish", @@ -3999,7 +3861,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Publish", @@ -4022,7 +3884,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Publish", @@ -4045,7 +3907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Publish", @@ -4068,7 +3930,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Publish", @@ -4091,7 +3953,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Publish", @@ -4114,7 +3976,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Publish", @@ -4137,7 +3999,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Publish", @@ -4160,7 +4022,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Publish", @@ -4183,7 +4045,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Publish", @@ -4206,7 +4068,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Publish", @@ -4229,7 +4091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Publish", @@ -4252,7 +4114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Publish", @@ -4275,7 +4137,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Publish", @@ -4298,7 +4160,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Publish", @@ -4321,7 +4183,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Publish", @@ -4344,7 +4206,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Publish", @@ -4367,7 +4229,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Console.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Publish", @@ -4390,7 +4252,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Publish", @@ -4413,7 +4275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Publish", @@ -4436,7 +4298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Publish", @@ -4459,7 +4321,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Publish", @@ -4482,7 +4344,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Publish", @@ -4505,7 +4367,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Publish", @@ -4528,7 +4390,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Memory.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Publish", @@ -4551,7 +4413,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Net.Http.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Publish", @@ -4574,7 +4436,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ObjectModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Publish", @@ -4597,7 +4459,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Publish", @@ -4620,7 +4482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.Uri.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Publish", @@ -4643,7 +4505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Publish", @@ -4666,7 +4528,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Publish", @@ -4689,7 +4551,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Publish", @@ -4712,7 +4574,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Publish", @@ -4735,7 +4597,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Publish", @@ -4758,7 +4620,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Publish", @@ -4781,7 +4643,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Publish", @@ -4804,7 +4666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Publish", @@ -4827,7 +4689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Publish", @@ -4850,7 +4712,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Publish", @@ -4873,7 +4735,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Claims.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Publish", @@ -4896,7 +4758,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Publish", @@ -4919,7 +4781,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Publish", @@ -4942,7 +4804,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Publish", @@ -4965,7 +4827,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Publish", @@ -4988,7 +4850,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Publish", @@ -5011,7 +4873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Publish", @@ -5034,7 +4896,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Publish", @@ -5057,7 +4919,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.wasm", "AssetKind": "Publish", @@ -5080,7 +4942,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm-minimal.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.wasm", "AssetKind": "Publish", @@ -5103,7 +4965,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Publish", @@ -5190,234 +5052,150 @@ "OriginalItemSpec": "wwwroot\\index.html", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" - } - ], - "Endpoints": [ - { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + } + ], + "Endpoints": [ + { + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -5430,7 +5208,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/javascript" }, { "Name": "ETag", @@ -21863,6 +21641,228 @@ "Value": "__integrity__" } ] + }, + { + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] } ] } \ No newline at end of file diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json index f4ee3f0e961f..2aa14cef8025 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json @@ -1,211 +1,6 @@ [ - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", @@ -416,9 +211,214 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\dotnet.js", "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json index 7850e1b62294..2b2c11722e25 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json @@ -17,35 +17,35 @@ ], "Assets": [ { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetKind": "Build", + "RelativePath": "_framework/blazor.webassembly.js", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetTraitValue": "boot", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${Tfm}\\blazor.webassembly.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "RelativePath": "_framework/blazorwasm-minimal.pdb", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -53,9772 +53,9809 @@ "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetTraitValue": "symbol", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.CSharp.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.CSharp.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Options.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Options.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.wasm", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm", + "RelativePath": "_framework/Microsoft.JSInterop.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.JSInterop.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.wasm", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.AppContext.wasm", + "RelativePath": "_framework/Microsoft.VisualBasic.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.VisualBasic.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Buffers.wasm", + "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.wasm", + "RelativePath": "_framework/Microsoft.Win32.Registry.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Win32.Registry.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.wasm", + "RelativePath": "_framework/System.AppContext.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.AppContext.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.wasm", + "RelativePath": "_framework/System.Buffers.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Buffers.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.wasm", + "RelativePath": "_framework/System.Collections.Concurrent.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Concurrent.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.wasm", + "RelativePath": "_framework/System.Collections.Immutable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Immutable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", + "RelativePath": "_framework/System.Collections.NonGeneric.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.NonGeneric.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm", + "RelativePath": "_framework/System.Collections.Specialized.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Specialized.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "RelativePath": "_framework/System.Collections.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", + "RelativePath": "_framework/System.ComponentModel.Annotations.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.Annotations.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.wasm", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Configuration.wasm", + "RelativePath": "_framework/System.ComponentModel.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Console.wasm", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Core.wasm", + "RelativePath": "_framework/System.ComponentModel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.wasm", + "RelativePath": "_framework/System.Configuration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Configuration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.wasm", + "RelativePath": "_framework/System.Console.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Console.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.wasm", + "RelativePath": "_framework/System.Core.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Core.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.wasm", + "RelativePath": "_framework/System.Data.Common.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.Common.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.wasm", + "RelativePath": "_framework/System.Data.DataSetExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.DataSetExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "RelativePath": "_framework/System.Data.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "RelativePath": "_framework/System.Diagnostics.Contracts.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Contracts.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.wasm", + "RelativePath": "_framework/System.Diagnostics.Debug.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Debug.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.wasm", + "RelativePath": "_framework/System.Diagnostics.Process.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Process.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm", + "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.wasm", + "RelativePath": "_framework/System.Diagnostics.Tools.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Tools.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.wasm", + "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.wasm", + "RelativePath": "_framework/System.Diagnostics.Tracing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Tracing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.wasm", + "RelativePath": "_framework/System.Drawing.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Drawing.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Tar.wasm", + "RelativePath": "_framework/System.Drawing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Drawing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.wasm", + "RelativePath": "_framework/System.Dynamic.Runtime.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Dynamic.Runtime.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.wasm", + "RelativePath": "_framework/System.Formats.Asn1.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Formats.Asn1.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.wasm", + "RelativePath": "_framework/System.Formats.Tar.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Formats.Tar.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.wasm", + "RelativePath": "_framework/System.Globalization.Calendars.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.Calendars.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm", + "RelativePath": "_framework/System.Globalization.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm", + "RelativePath": "_framework/System.Globalization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.wasm", + "RelativePath": "_framework/System.IO.Compression.Brotli.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.Brotli.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm", + "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm", + "RelativePath": "_framework/System.IO.Compression.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.wasm", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.wasm", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.wasm", + "RelativePath": "_framework/System.IO.FileSystem.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm", + "RelativePath": "_framework/System.IO.IsolatedStorage.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.IsolatedStorage.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.wasm", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "RelativePath": "_framework/System.IO.Pipelines.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipelines.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.wasm", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm", + "RelativePath": "_framework/System.IO.Pipes.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipes.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.wasm", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.wasm", + "RelativePath": "_framework/System.IO.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.wasm", + "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.wasm", + "RelativePath": "_framework/System.Linq.Expressions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Expressions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Memory.wasm", + "RelativePath": "_framework/System.Linq.Parallel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Parallel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.wasm", + "RelativePath": "_framework/System.Linq.Queryable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Queryable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.wasm", + "RelativePath": "_framework/System.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.wasm", + "RelativePath": "_framework/System.Memory.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Memory.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.wasm", + "RelativePath": "_framework/System.Net.Http.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Http.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.wasm", + "RelativePath": "_framework/System.Net.Http.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Http.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.wasm", + "RelativePath": "_framework/System.Net.HttpListener.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.HttpListener.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.wasm", + "RelativePath": "_framework/System.Net.Mail.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Mail.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.wasm", + "RelativePath": "_framework/System.Net.NameResolution.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.NameResolution.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.wasm", + "RelativePath": "_framework/System.Net.NetworkInformation.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.NetworkInformation.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.wasm", + "RelativePath": "_framework/System.Net.Ping.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Ping.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.wasm", + "RelativePath": "_framework/System.Net.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServerSentEvents.wasm", + "RelativePath": "_framework/System.Net.Quic.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Quic.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.wasm", + "RelativePath": "_framework/System.Net.Requests.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Requests.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.wasm", + "RelativePath": "_framework/System.Net.Security.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Security.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.wasm", + "RelativePath": "_framework/System.Net.ServerSentEvents.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.ServerSentEvents.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm", + "RelativePath": "_framework/System.Net.ServicePoint.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.ServicePoint.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.wasm", + "RelativePath": "_framework/System.Net.Sockets.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Sockets.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.wasm", + "RelativePath": "_framework/System.Net.WebClient.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebClient.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.wasm", + "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.wasm", + "RelativePath": "_framework/System.Net.WebProxy.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebProxy.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.wasm", + "RelativePath": "_framework/System.Net.WebSockets.Client.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebSockets.Client.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.wasm", + "RelativePath": "_framework/System.Net.WebSockets.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebSockets.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.wasm", + "RelativePath": "_framework/System.Net.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.wasm", + "RelativePath": "_framework/System.Numerics.Vectors.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Numerics.Vectors.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.wasm", + "RelativePath": "_framework/System.Numerics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Numerics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.wasm", + "RelativePath": "_framework/System.ObjectModel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ObjectModel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.wasm", + "RelativePath": "_framework/System.Private.CoreLib.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.CoreLib.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.wasm", + "RelativePath": "_framework/System.Private.DataContractSerialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.DataContractSerialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm", + "RelativePath": "_framework/System.Private.Uri.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Uri.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "RelativePath": "_framework/System.Private.Xml.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Xml.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", + "RelativePath": "_framework/System.Private.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.wasm", + "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.wasm", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.wasm", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.wasm", + "RelativePath": "_framework/System.Reflection.Emit.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm", + "RelativePath": "_framework/System.Reflection.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.wasm", + "RelativePath": "_framework/System.Reflection.Metadata.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Metadata.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.wasm", + "RelativePath": "_framework/System.Reflection.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.wasm", + "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.wasm", + "RelativePath": "_framework/System.Reflection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "RelativePath": "_framework/System.Resources.Reader.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.Reader.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "RelativePath": "_framework/System.Resources.ResourceManager.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.ResourceManager.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.wasm", + "RelativePath": "_framework/System.Resources.Writer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.Writer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.wasm", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "RelativePath": "_framework/System.Runtime.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.wasm", + "RelativePath": "_framework/System.Runtime.Handles.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Handles.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm", + "RelativePath": "_framework/System.Runtime.Intrinsics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Intrinsics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm", + "RelativePath": "_framework/System.Runtime.Loader.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Loader.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm", + "RelativePath": "_framework/System.Runtime.Numerics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Numerics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm", + "RelativePath": "_framework/System.Runtime.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm", + "RelativePath": "_framework/System.Security.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm", + "RelativePath": "_framework/System.Security.Claims.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Claims.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.wasm", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.wasm", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.wasm", + "RelativePath": "_framework/System.Security.Cryptography.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.wasm", + "RelativePath": "_framework/System.Security.Principal.Windows.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Principal.Windows.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.wasm", + "RelativePath": "_framework/System.Security.Principal.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Principal.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.wasm", + "RelativePath": "_framework/System.Security.SecureString.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.SecureString.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm", + "RelativePath": "_framework/System.Security.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm", + "RelativePath": "_framework/System.ServiceModel.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ServiceModel.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.wasm", + "RelativePath": "_framework/System.ServiceProcess.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ServiceProcess.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.wasm", + "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.wasm", + "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.wasm", + "RelativePath": "_framework/System.Text.Encoding.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.AccessControl.wasm", + "RelativePath": "_framework/System.Text.Encodings.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encodings.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.wasm", + "RelativePath": "_framework/System.Text.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.wasm", + "RelativePath": "_framework/System.Text.RegularExpressions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.RegularExpressions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm", + "RelativePath": "_framework/System.Threading.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm", + "RelativePath": "_framework/System.Threading.Channels.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Channels.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm", + "RelativePath": "_framework/System.Threading.Overlapped.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Overlapped.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.wasm", + "RelativePath": "_framework/System.Threading.Tasks.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.wasm", + "RelativePath": "_framework/System.Threading.Thread.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Thread.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.wasm", + "RelativePath": "_framework/System.Threading.ThreadPool.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.ThreadPool.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.wasm", + "RelativePath": "_framework/System.Threading.Timer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Timer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.wasm", + "RelativePath": "_framework/System.Threading.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.wasm", + "RelativePath": "_framework/System.Transactions.Local.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Transactions.Local.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.wasm", + "RelativePath": "_framework/System.Transactions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Transactions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Windows.wasm", + "RelativePath": "_framework/System.ValueTuple.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ValueTuple.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.wasm", + "RelativePath": "_framework/System.Web.HttpUtility.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Web.HttpUtility.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.wasm", + "RelativePath": "_framework/System.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.wasm", + "RelativePath": "_framework/System.Windows.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Windows.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.wasm", + "RelativePath": "_framework/System.Xml.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm", + "RelativePath": "_framework/System.Xml.ReaderWriter.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.ReaderWriter.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.wasm", + "RelativePath": "_framework/System.Xml.Serialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.Serialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.wasm", + "RelativePath": "_framework/System.Xml.XDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.wasm", + "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.wasm", + "RelativePath": "_framework/System.Xml.XPath.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XPath.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.wasm", + "RelativePath": "_framework/System.Xml.XmlDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XmlDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/WindowsBase.wasm", + "RelativePath": "_framework/System.Xml.XmlSerializer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XmlSerializer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js", - "AssetKind": "All", + "RelativePath": "_framework/System.Xml.wasm.gz", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "boot", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${Tfm}\\blazor.webassembly.js", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm-minimal.pdb", + "RelativePath": "_framework/System.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "symbol", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm-minimal.wasm", + "RelativePath": "_framework/WindowsBase.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\WindowsBase.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js", - "AssetKind": "Build", + "RelativePath": "_framework/blazor.webassembly.js.gz", + "AssetKind": "All", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "manifest", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "obj\\Debug\\${Tfm}\\dotnet.js", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.map", + "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazorwasm-minimal.pdb.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", + "RelativePath": "_framework/blazorwasm-minimal.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\blazorwasm-minimal.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\dotnet.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\dotnet.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", + "RelativePath": "_framework/dotnet.js.map.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.js.map.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.map", + "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", + "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", + "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", + "RelativePath": "_framework/dotnet.runtime.js.map.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.map.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/mscorlib.wasm", + "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/netstandard.wasm", + "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", + "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", + "RelativePath": "_framework/mscorlib.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\mscorlib.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", + "RelativePath": "_framework/netstandard.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\_framework\\netstandard.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\appsettings.development.json.gz", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", + "SourceType": "Discovered", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", - "AssetKind": "Build", + "RelativePath": "appsettings.development.json.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "RelatedAsset": "${ProjectPath}\\wwwroot\\appsettings.development.json", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\wwwroot\\appsettings.development.json.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", + "RelativePath": "blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", + "AssetKind": "All", + "AssetMode": "Reference", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", + "RelativePath": "blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", + "AssetKind": "All", + "AssetMode": "CurrentProject", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", + "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", + "SourceType": "Discovered", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.wasm.gz", - "AssetKind": "Build", + "RelativePath": "css/app.css.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", + "RelatedAsset": "${ProjectPath}\\wwwroot\\css\\app.css", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\wwwroot\\css\\css\\app.css.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", + "SourceType": "Discovered", "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", - "AssetKind": "Build", + "RelativePath": "index.html.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "RelatedAsset": "${ProjectPath}\\wwwroot\\index.html", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "OriginalItemSpec": "${ProjectPath}\\wwwroot\\index.html.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\dotnet.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "manifest", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\dotnet.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "JSModule", + "AssetTraitValue": "JSLibraryModule", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", + "RelativePath": "blazorwasm-minimal#[.{fingerprint}]?.styles.css", + "AssetKind": "All", + "AssetMode": "CurrentProject", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ApplicationBundle", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Alternative", + "RelativePath": "blazorwasm-minimal#[.{fingerprint}]!.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "RelativePath": "_framework/Microsoft.CSharp.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.AppContext.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Buffers.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.wasm.gz", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.wasm.gz", + "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.wasm.gz", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", + "RelativePath": "_framework/Microsoft.VisualBasic.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", + "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.Win32.Registry.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm.gz", + "RelativePath": "_framework/System.AppContext.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.wasm.gz", + "RelativePath": "_framework/System.Buffers.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Configuration.wasm.gz", + "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Console.wasm.gz", + "RelativePath": "_framework/System.Collections.Immutable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Core.wasm.gz", + "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.wasm.gz", + "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.wasm.gz", + "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm.gz", + "RelativePath": "_framework/System.Configuration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", + "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.wasm.gz", + "RelativePath": "_framework/System.Core.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm.gz", + "RelativePath": "_framework/System.Data.Common.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.wasm.gz", + "RelativePath": "_framework/System.Data.DataSetExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.wasm.gz", + "RelativePath": "_framework/System.Data.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Contracts.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Debug.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Tar.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Process.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Tools.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.wasm.gz", + "RelativePath": "_framework/System.Drawing.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Drawing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", + "RelativePath": "_framework/System.Dynamic.Runtime.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm.gz", + "RelativePath": "_framework/System.Formats.Asn1.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm.gz", + "RelativePath": "_framework/System.Formats.Tar.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.wasm.gz", + "RelativePath": "_framework/System.Globalization.Calendars.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.wasm.gz", + "RelativePath": "_framework/System.Globalization.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm.gz", + "RelativePath": "_framework/System.Globalization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.Brotli.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.wasm.gz", + "RelativePath": "_framework/System.IO.IsolatedStorage.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Memory.wasm.gz", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.wasm.gz", + "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.wasm.gz", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.wasm.gz", + "RelativePath": "_framework/System.IO.Pipes.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.wasm.gz", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.wasm.gz", + "RelativePath": "_framework/System.IO.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.wasm.gz", + "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.wasm.gz", + "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.wasm.gz", + "RelativePath": "_framework/System.Linq.Parallel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.wasm.gz", + "RelativePath": "_framework/System.Linq.Queryable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.wasm.gz", + "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.wasm.gz", + "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServerSentEvents.wasm.gz", + "RelativePath": "_framework/System.Net.Http.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.wasm.gz", + "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.wasm.gz", + "RelativePath": "_framework/System.Net.HttpListener.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.wasm.gz", + "RelativePath": "_framework/System.Net.Mail.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm.gz", + "RelativePath": "_framework/System.Net.NameResolution.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.wasm.gz", + "RelativePath": "_framework/System.Net.NetworkInformation.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.wasm.gz", + "RelativePath": "_framework/System.Net.Ping.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.wasm.gz", + "RelativePath": "_framework/System.Net.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.wasm.gz", + "RelativePath": "_framework/System.Net.Quic.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.wasm.gz", + "RelativePath": "_framework/System.Net.Requests.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.wasm.gz", + "RelativePath": "_framework/System.Net.Security.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.wasm.gz", + "RelativePath": "_framework/System.Net.ServerSentEvents.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.wasm.gz", + "RelativePath": "_framework/System.Net.ServicePoint.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.wasm.gz", + "RelativePath": "_framework/System.Net.Sockets.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.wasm.gz", + "RelativePath": "_framework/System.Net.WebClient.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.wasm.gz", + "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.wasm.gz", + "RelativePath": "_framework/System.Net.WebProxy.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm.gz", + "RelativePath": "_framework/System.Net.WebSockets.Client.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", + "RelativePath": "_framework/System.Net.WebSockets.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", + "RelativePath": "_framework/System.Net.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.wasm.gz", + "RelativePath": "_framework/System.Numerics.Vectors.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.wasm.gz", + "RelativePath": "_framework/System.Numerics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.wasm.gz", + "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.wasm.gz", + "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm.gz", + "RelativePath": "_framework/System.Private.DataContractSerialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.wasm.gz", + "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.wasm.gz", + "RelativePath": "_framework/System.Private.Xml.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.wasm.gz", + "RelativePath": "_framework/System.Private.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.wasm.gz", + "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.wasm.gz", + "RelativePath": "_framework/System.Reflection.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", + "RelativePath": "_framework/System.Reflection.Metadata.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.wasm.gz", + "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.wasm.gz", + "RelativePath": "_framework/System.Reflection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.wasm.gz", + "RelativePath": "_framework/System.Resources.Reader.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.wasm.gz", + "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", + "RelativePath": "_framework/System.Resources.Writer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm.gz", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm.gz", + "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.wasm.gz", + "RelativePath": "_framework/System.Runtime.Handles.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", + "RelativePath": "_framework/System.Runtime.Intrinsics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm.gz", + "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm.gz", + "RelativePath": "_framework/System.Runtime.Numerics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.wasm.gz", + "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.wasm.gz", + "RelativePath": "_framework/System.Security.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.wasm.gz", + "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.wasm.gz", + "RelativePath": "_framework/System.Security.Principal.Windows.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Security.Principal.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.wasm.gz", + "RelativePath": "_framework/System.Security.SecureString.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.wasm.gz", + "RelativePath": "_framework/System.Security.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", + "RelativePath": "_framework/System.ServiceModel.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm.gz", + "RelativePath": "_framework/System.ServiceProcess.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.wasm.gz", + "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.wasm.gz", + "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.wasm.gz", + "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.wasm.gz", + "RelativePath": "_framework/System.Threading.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.wasm.gz", + "RelativePath": "_framework/System.Threading.Channels.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.wasm.gz", + "RelativePath": "_framework/System.Threading.Overlapped.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Windows.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.wasm.gz", + "RelativePath": "_framework/System.Threading.Thread.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.wasm.gz", + "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.wasm.gz", + "RelativePath": "_framework/System.Threading.Timer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm.gz", + "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.wasm.gz", + "RelativePath": "_framework/System.Transactions.Local.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.wasm.gz", + "RelativePath": "_framework/System.Transactions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.wasm.gz", + "RelativePath": "_framework/System.ValueTuple.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.wasm.gz", + "RelativePath": "_framework/System.Web.HttpUtility.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.wasm.gz", + "RelativePath": "_framework/System.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/WindowsBase.wasm.gz", + "RelativePath": "_framework/System.Windows.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js.gz", - "AssetKind": "All", + "RelativePath": "_framework/System.Xml.Linq.wasm", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm-minimal.pdb.gz", + "RelativePath": "_framework/System.Xml.ReaderWriter.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm-minimal.wasm.gz", + "RelativePath": "_framework/System.Xml.Serialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.gz", + "RelativePath": "_framework/System.Xml.XDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.map.gz", + "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.map.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js.gz", + "RelativePath": "_framework/System.Xml.XPath.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm.gz", + "RelativePath": "_framework/System.Xml.XmlDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.gz", + "RelativePath": "_framework/System.Xml.XmlSerializer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.map.gz", + "RelativePath": "_framework/System.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.map.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat.gz", + "RelativePath": "_framework/System.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat.gz", + "RelativePath": "_framework/WindowsBase.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat.gz", + "RelativePath": "_framework/blazorwasm-minimal.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/mscorlib.wasm.gz", + "RelativePath": "_framework/mscorlib.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/netstandard.wasm.gz", + "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\appsettings.development.json.gz", + "Identity": "${ProjectPath}\\wwwroot\\appsettings.development.json", "SourceId": "blazorwasm-minimal", "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", - "RelativePath": "appsettings.development.json.gz", + "RelativePath": "appsettings.development.json", "AssetKind": "All", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\wwwroot\\appsettings.development.json", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "settings", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\wwwroot\\appsettings.development.json.gz", + "OriginalItemSpec": "wwwroot\\appsettings.development.json", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", + "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Discovered", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", - "RelativePath": "blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", + "RelativePath": "css/app.css", "AssetKind": "All", - "AssetMode": "Reference", - "AssetRole": "Alternative", + "AssetMode": "All", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", + "OriginalItemSpec": "wwwroot\\css\\app.css", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", + "Identity": "${ProjectPath}\\wwwroot\\index.html", "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Discovered", + "ContentRoot": "${ProjectPath}\\wwwroot\\", "BasePath": "/", - "RelativePath": "blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", + "RelativePath": "index.html", "AssetKind": "All", - "AssetMode": "CurrentProject", - "AssetRole": "Alternative", + "AssetMode": "All", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", + "OriginalItemSpec": "wwwroot\\index.html", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "css/app.css.gz", - "AssetKind": "All", + "RelativePath": "_framework/dotnet.js.map", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\wwwroot\\css\\app.css", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\wwwroot\\css\\css\\app.css.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "index.html.gz", - "AssetKind": "All", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\wwwroot\\index.html", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\wwwroot\\index.html.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "RelativePath": "_framework/dotnet.native.wasm", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "JSModule", - "AssetTraitValue": "JSLibraryModule", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "blazorwasm-minimal#[.{fingerprint}]?.styles.css", - "AssetKind": "All", - "AssetMode": "CurrentProject", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Build", + "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "ScopedCss", - "AssetTraitValue": "ApplicationBundle", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "blazorwasm-minimal#[.{fingerprint}]!.bundle.scp.css", - "AssetKind": "All", - "AssetMode": "Reference", + "RelativePath": "_framework/dotnet.runtime.js.map", + "AssetKind": "Build", + "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "ScopedCss", - "AssetTraitValue": "ProjectBundle", + "AssetTraitName": "", + "AssetTraitValue": "", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\wwwroot\\appsettings.development.json", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\wwwroot\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "appsettings.development.json", - "AssetKind": "All", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "settings", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\appsettings.development.json", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\wwwroot\\css\\app.css", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\wwwroot\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "css/app.css", - "AssetKind": "All", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\css\\app.css", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\wwwroot\\index.html", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\wwwroot\\", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", "BasePath": "/", - "RelativePath": "index.html", - "AssetKind": "All", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\index.html", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" } ], "Endpoints": [ { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/blazorwasm-minimal.pdb", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb", "Selectors": [], "ResponseHeaders": [ { @@ -9829,6 +9866,47 @@ "Name": "Content-Length", "Value": "__content-length__" }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, { "Name": "Content-Type", "Value": "application/wasm" @@ -9854,14 +9932,69 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" + } + ] + }, + { + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -9891,51 +10024,24 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -9961,18 +10067,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10002,14 +10116,24 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10035,18 +10159,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.CSharp.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10076,14 +10208,24 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10109,18 +10251,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10150,14 +10300,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10183,18 +10343,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10224,14 +10392,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10257,18 +10435,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "Route": "_framework/Microsoft.CSharp.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10298,14 +10484,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.CSharp.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10331,25 +10527,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -10372,21 +10576,31 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -10405,18 +10619,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10446,14 +10668,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10479,18 +10711,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10520,14 +10760,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10553,18 +10803,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10594,51 +10852,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10664,18 +10895,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10705,51 +10944,24 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.VisualBasic.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10775,18 +10987,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10816,51 +11036,24 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.AppContext.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10886,18 +11079,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Buffers.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10927,14 +11128,24 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10960,18 +11171,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.Immutable.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11001,14 +11220,24 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11034,18 +11263,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.Specialized.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11075,14 +11312,24 @@ ] }, { - "Route": "_framework/System.Collections.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11108,18 +11355,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11149,51 +11404,24 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11219,18 +11447,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11260,51 +11496,24 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ComponentModel.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11330,18 +11539,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Configuration.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11371,14 +11588,24 @@ ] }, { - "Route": "_framework/System.Console.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11404,18 +11631,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Core.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11445,14 +11680,24 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11478,18 +11723,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", + "Route": "_framework/Microsoft.Extensions.Logging.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11519,14 +11772,24 @@ ] }, { - "Route": "_framework/System.Data.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Logging.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11552,18 +11815,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", + "Route": "_framework/Microsoft.Extensions.Options.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11593,14 +11864,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Options.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11626,18 +11907,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", + "Route": "_framework/Microsoft.Extensions.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11667,14 +11956,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11700,18 +11999,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11741,14 +12048,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11774,18 +12091,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", + "Route": "_framework/Microsoft.JSInterop.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11815,51 +12140,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.JSInterop.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Diagnostics.TraceSource.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11885,18 +12183,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", + "Route": "_framework/Microsoft.VisualBasic.Core.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11926,51 +12232,24 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.VisualBasic.Core.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Drawing.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11996,18 +12275,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", + "Route": "_framework/Microsoft.VisualBasic.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12037,51 +12324,24 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.VisualBasic.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Formats.Tar.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12107,18 +12367,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", + "Route": "_framework/Microsoft.Win32.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12148,14 +12416,24 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Win32.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12181,18 +12459,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Globalization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", + "Route": "_framework/Microsoft.Win32.Registry.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12222,14 +12508,24 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Win32.Registry.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12255,18 +12551,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", + "Route": "_framework/System.AppContext.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12296,14 +12600,24 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "Selectors": [], + "Route": "_framework/System.AppContext.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12329,18 +12643,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Compression.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", + "Route": "_framework/System.Buffers.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12370,51 +12692,24 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Buffers.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12440,18 +12735,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", + "Route": "_framework/System.Collections.Concurrent.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12481,51 +12784,24 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Collections.Concurrent.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12551,18 +12827,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", + "Route": "_framework/System.Collections.Immutable.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12592,14 +12876,24 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Immutable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12625,18 +12919,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Pipelines.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", + "Route": "_framework/System.Collections.NonGeneric.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12666,14 +12968,24 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.NonGeneric.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12699,18 +13011,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Pipes.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", + "Route": "_framework/System.Collections.Specialized.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12740,14 +13060,24 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Specialized.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12773,18 +13103,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", + "Route": "_framework/System.Collections.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12814,14 +13152,24 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12847,18 +13195,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Linq.Expressions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", + "Route": "_framework/System.ComponentModel.Annotations.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12888,14 +13244,24 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.Annotations.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12921,18 +13287,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Linq.Queryable.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12962,14 +13336,24 @@ ] }, { - "Route": "_framework/System.Linq.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12995,18 +13379,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Memory.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13036,51 +13428,24 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.Http.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13106,18 +13471,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.HttpListener.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", + "Route": "_framework/System.ComponentModel.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13147,51 +13520,24 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.NameResolution.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13217,18 +13563,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", + "Route": "_framework/System.ComponentModel.TypeConverter.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13258,51 +13612,24 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.TypeConverter.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13328,18 +13655,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.Quic.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", + "Route": "_framework/System.ComponentModel.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13369,14 +13704,24 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13402,18 +13747,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.Security.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", + "Route": "_framework/System.Configuration.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13443,14 +13796,24 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "Selectors": [], + "Route": "_framework/System.Configuration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13476,18 +13839,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", + "Route": "_framework/System.Console.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13517,14 +13888,24 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "Selectors": [], + "Route": "_framework/System.Console.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13550,18 +13931,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.WebClient.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", + "Route": "_framework/System.Core.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13591,51 +13980,24 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Core.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.WebProxy.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13661,18 +14023,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", + "Route": "_framework/System.Data.Common.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13702,51 +14072,24 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Data.Common.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13772,18 +14115,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", + "Route": "_framework/System.Data.DataSetExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13813,14 +14164,24 @@ ] }, { - "Route": "_framework/System.Numerics.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "Selectors": [], + "Route": "_framework/System.Data.DataSetExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13846,18 +14207,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ObjectModel.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", + "Route": "_framework/System.Data.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13887,14 +14256,24 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "Selectors": [], + "Route": "_framework/System.Data.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13920,18 +14299,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", + "Route": "_framework/System.Diagnostics.Contracts.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13961,14 +14348,24 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Contracts.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13994,18 +14391,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", + "Route": "_framework/System.Diagnostics.Debug.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14035,14 +14440,24 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Debug.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14068,18 +14483,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14109,14 +14532,24 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14142,18 +14575,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14183,14 +14624,24 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14216,18 +14667,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", + "Route": "_framework/System.Diagnostics.Process.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14257,51 +14716,24 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.Process.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Reflection.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14327,18 +14759,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", + "Route": "_framework/System.Diagnostics.StackTrace.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14368,51 +14808,24 @@ ] }, { - "Route": "_framework/System.Reflection.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.StackTrace.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Resources.Reader.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14438,18 +14851,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14479,51 +14900,24 @@ ] }, { - "Route": "_framework/System.Resources.Writer.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14549,18 +14943,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", + "Route": "_framework/System.Diagnostics.Tools.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14590,14 +14992,24 @@ ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Tools.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14623,18 +15035,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Handles.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", + "Route": "_framework/System.Diagnostics.TraceSource.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14664,14 +15084,24 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.TraceSource.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14697,18 +15127,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Route": "_framework/System.Diagnostics.Tracing.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14738,14 +15176,24 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Tracing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14771,18 +15219,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", + "Route": "_framework/System.Drawing.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14812,51 +15268,24 @@ ] }, { - "Route": "_framework/System.Runtime.Loader.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Drawing.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.Numerics.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14882,18 +15311,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", + "Route": "_framework/System.Drawing.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14923,51 +15360,24 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Drawing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14993,18 +15403,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", + "Route": "_framework/System.Dynamic.Runtime.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15034,14 +15452,24 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "Selectors": [], + "Route": "_framework/System.Dynamic.Runtime.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15067,18 +15495,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", + "Route": "_framework/System.Formats.Asn1.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15108,14 +15544,24 @@ ] }, { - "Route": "_framework/System.Security.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "Selectors": [], + "Route": "_framework/System.Formats.Asn1.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15141,18 +15587,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Claims.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", + "Route": "_framework/System.Formats.Tar.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15182,14 +15636,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "Selectors": [], + "Route": "_framework/System.Formats.Tar.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15215,18 +15679,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", + "Route": "_framework/System.Globalization.Calendars.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15256,14 +15728,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "Selectors": [], + "Route": "_framework/System.Globalization.Calendars.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15289,18 +15771,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", + "Route": "_framework/System.Globalization.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15330,14 +15820,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "Selectors": [], + "Route": "_framework/System.Globalization.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15363,18 +15863,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", + "Route": "_framework/System.Globalization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15404,14 +15912,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "Selectors": [], + "Route": "_framework/System.Globalization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15437,18 +15955,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", + "Route": "_framework/System.IO.Compression.Brotli.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15478,51 +16004,24 @@ ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.Brotli.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Security.Principal.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15548,18 +16047,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.SecureString.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", + "Route": "_framework/System.IO.Compression.FileSystem.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15589,51 +16096,24 @@ ] }, { - "Route": "_framework/System.Security.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ServiceModel.Web.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15659,18 +16139,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceProcess.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", + "Route": "_framework/System.IO.Compression.ZipFile.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15700,51 +16188,24 @@ ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.ZipFile.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Text.Encoding.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15770,18 +16231,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", + "Route": "_framework/System.IO.Compression.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15811,14 +16280,24 @@ ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Compression.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15844,18 +16323,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Json.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15885,14 +16372,24 @@ ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15918,18 +16415,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15959,14 +16464,24 @@ ] }, { - "Route": "_framework/System.Threading.Channels.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15992,18 +16507,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", + "Route": "_framework/System.IO.FileSystem.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16033,51 +16556,24 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.FileSystem.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16103,18 +16599,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", + "Route": "_framework/System.IO.FileSystem.Watcher.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16144,51 +16648,24 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.FileSystem.Watcher.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Threading.Thread.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16214,18 +16691,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", + "Route": "_framework/System.IO.FileSystem.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16255,14 +16740,24 @@ ] }, { - "Route": "_framework/System.Threading.Timer.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16288,18 +16783,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", + "Route": "_framework/System.IO.IsolatedStorage.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16329,14 +16832,24 @@ ] }, { - "Route": "_framework/System.Transactions.Local.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "Selectors": [], + "Route": "_framework/System.IO.IsolatedStorage.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16362,18 +16875,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", + "Route": "_framework/System.IO.MemoryMappedFiles.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16403,14 +16924,24 @@ ] }, { - "Route": "_framework/System.ValueTuple.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "Selectors": [], + "Route": "_framework/System.IO.MemoryMappedFiles.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16436,18 +16967,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", + "Route": "_framework/System.IO.Pipelines.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16477,14 +17016,24 @@ ] }, { - "Route": "_framework/System.Web.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipelines.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16510,18 +17059,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Windows.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", + "Route": "_framework/System.IO.Pipes.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16551,14 +17108,24 @@ ] }, { - "Route": "_framework/System.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipes.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16584,18 +17151,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", + "Route": "_framework/System.IO.Pipes.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16625,14 +17200,24 @@ ] }, { - "Route": "_framework/System.Xml.Serialization.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipes.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16658,18 +17243,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XDocument.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16699,14 +17292,24 @@ ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "Selectors": [], + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16732,18 +17335,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", + "Route": "_framework/System.IO.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16773,14 +17384,24 @@ ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "Selectors": [], + "Route": "_framework/System.IO.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16806,18 +17427,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", + "Route": "_framework/System.Linq.AsyncEnumerable.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16847,14 +17476,24 @@ ] }, { - "Route": "_framework/System.Xml.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "Selectors": [], + "Route": "_framework/System.Linq.AsyncEnumerable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16880,18 +17519,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", + "Route": "_framework/System.Linq.Expressions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16921,14 +17568,24 @@ ] }, { - "Route": "_framework/WindowsBase.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", - "Selectors": [], + "Route": "_framework/System.Linq.Expressions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16954,25 +17611,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Route": "_framework/System.Linq.Parallel.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -16995,51 +17660,24 @@ ] }, { - "Route": "_framework/blazorwasm-minimal.pdb", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Linq.Parallel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/blazorwasm-minimal.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17065,25 +17703,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Route": "_framework/System.Linq.Queryable.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17099,30 +17745,6 @@ } ], "EndpointProperties": [ - { - "Name": "PreloadAs", - "Value": "script" - }, - { - "Name": "PreloadCrossorigin", - "Value": "anonymous" - }, - { - "Name": "PreloadGroup", - "Value": "webassembly" - }, - { - "Name": "PreloadOrder", - "Value": "1" - }, - { - "Name": "PreloadPriority", - "Value": "high" - }, - { - "Name": "PreloadRel", - "Value": "preload" - }, { "Name": "integrity", "Value": "__integrity__" @@ -17130,58 +17752,31 @@ ] }, { - "Route": "_framework/dotnet.js.map", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Linq.Queryable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17200,18 +17795,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "Route": "_framework/System.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17241,21 +17844,31 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], + "Route": "_framework/System.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17274,25 +17887,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.map", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", + "Route": "_framework/System.Memory.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17315,21 +17936,31 @@ ] }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], + "Route": "_framework/System.Memory.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17348,25 +17979,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Route": "_framework/System.Net.Http.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17389,21 +18028,31 @@ ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "Selectors": [], + "Route": "_framework/System.Net.Http.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17422,18 +18071,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/mscorlib.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", + "Route": "_framework/System.Net.Http.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17463,14 +18120,24 @@ ] }, { - "Route": "_framework/netstandard.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", - "Selectors": [], + "Route": "_framework/System.Net.Http.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17496,12 +18163,16 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17541,8 +18212,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17592,8 +18263,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17633,8 +18304,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17684,8 +18355,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Route": "_framework/System.Net.NameResolution.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17725,8 +18396,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Route": "_framework/System.Net.NameResolution.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17776,8 +18447,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17817,8 +18488,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17868,8 +18539,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17909,8 +18580,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -17960,8 +18631,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Route": "_framework/System.Net.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18001,8 +18672,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Route": "_framework/System.Net.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18052,8 +18723,8 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18093,8 +18764,8 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18144,8 +18815,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Route": "_framework/System.Net.Requests.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18162,7 +18833,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18185,8 +18856,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Route": "_framework/System.Net.Requests.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18209,7 +18880,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18236,8 +18907,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Route": "_framework/System.Net.Security.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18277,8 +18948,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Route": "_framework/System.Net.Security.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18328,8 +18999,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18369,8 +19040,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18420,8 +19091,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18461,8 +19132,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18512,8 +19183,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18553,8 +19224,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18604,8 +19275,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18645,8 +19316,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18696,8 +19367,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18737,8 +19408,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18788,8 +19459,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18829,8 +19500,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18880,8 +19551,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18921,8 +19592,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18972,8 +19643,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19013,8 +19684,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19064,8 +19735,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Route": "_framework/System.Net.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19105,8 +19776,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Route": "_framework/System.Net.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19156,8 +19827,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19197,8 +19868,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19248,8 +19919,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Route": "_framework/System.Numerics.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19289,8 +19960,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Route": "_framework/System.Numerics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19340,8 +20011,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19381,8 +20052,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19432,8 +20103,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19473,8 +20144,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19524,8 +20195,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19565,8 +20236,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19616,8 +20287,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19657,8 +20328,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19708,8 +20379,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19749,8 +20420,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19800,8 +20471,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19841,8 +20512,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19892,8 +20563,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19933,8 +20604,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19984,8 +20655,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20025,8 +20696,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20076,8 +20747,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20117,8 +20788,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20168,8 +20839,8 @@ ] }, { - "Route": "_framework/System.AppContext.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Route": "_framework/System.Reflection.Emit.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20209,8 +20880,8 @@ ] }, { - "Route": "_framework/System.AppContext.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Route": "_framework/System.Reflection.Emit.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20260,8 +20931,8 @@ ] }, { - "Route": "_framework/System.Buffers.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20301,8 +20972,8 @@ ] }, { - "Route": "_framework/System.Buffers.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20352,8 +21023,8 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20393,8 +21064,8 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20444,8 +21115,8 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Route": "_framework/System.Reflection.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20485,8 +21156,8 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Route": "_framework/System.Reflection.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20536,8 +21207,8 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20577,8 +21248,8 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20628,8 +21299,8 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Route": "_framework/System.Reflection.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20669,8 +21340,8 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Route": "_framework/System.Reflection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20720,8 +21391,8 @@ ] }, { - "Route": "_framework/System.Collections.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20761,8 +21432,8 @@ ] }, { - "Route": "_framework/System.Collections.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20812,8 +21483,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20853,8 +21524,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20904,8 +21575,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20945,8 +21616,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20996,8 +21667,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21037,8 +21708,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21088,8 +21759,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21129,8 +21800,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21180,8 +21851,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21221,8 +21892,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21272,8 +21943,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21313,8 +21984,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21364,8 +22035,8 @@ ] }, { - "Route": "_framework/System.Configuration.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21405,8 +22076,8 @@ ] }, { - "Route": "_framework/System.Configuration.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21456,8 +22127,8 @@ ] }, { - "Route": "_framework/System.Console.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21497,8 +22168,8 @@ ] }, { - "Route": "_framework/System.Console.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21548,8 +22219,8 @@ ] }, { - "Route": "_framework/System.Core.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21589,8 +22260,8 @@ ] }, { - "Route": "_framework/System.Core.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21640,8 +22311,8 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21681,8 +22352,8 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21732,8 +22403,8 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21773,8 +22444,8 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21824,8 +22495,8 @@ ] }, { - "Route": "_framework/System.Data.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21865,8 +22536,8 @@ ] }, { - "Route": "_framework/System.Data.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21916,8 +22587,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21957,8 +22628,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22008,8 +22679,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22049,8 +22720,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22100,8 +22771,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22141,8 +22812,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22192,8 +22863,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22233,8 +22904,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22284,8 +22955,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22325,8 +22996,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22376,8 +23047,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Route": "_framework/System.Runtime.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22417,8 +23088,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Route": "_framework/System.Runtime.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22468,8 +23139,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22509,8 +23180,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22560,8 +23231,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22601,8 +23272,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22652,8 +23323,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22693,8 +23364,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22744,8 +23415,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22785,8 +23456,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22836,8 +23507,8 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22877,8 +23548,8 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22928,8 +23599,8 @@ ] }, { - "Route": "_framework/System.Drawing.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22969,8 +23640,8 @@ ] }, { - "Route": "_framework/System.Drawing.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23020,8 +23691,8 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23061,8 +23732,8 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23112,8 +23783,8 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23153,8 +23824,8 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23204,8 +23875,8 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23245,8 +23916,8 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23296,8 +23967,8 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23337,8 +24008,8 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23388,8 +24059,8 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23429,8 +24100,8 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23480,8 +24151,8 @@ ] }, { - "Route": "_framework/System.Globalization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Route": "_framework/System.Security.Principal.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23521,8 +24192,8 @@ ] }, { - "Route": "_framework/System.Globalization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Route": "_framework/System.Security.Principal.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23572,8 +24243,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23613,8 +24284,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23664,8 +24335,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Route": "_framework/System.Security.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23705,8 +24376,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Route": "_framework/System.Security.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23756,8 +24427,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23797,8 +24468,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23848,8 +24519,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23889,8 +24560,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23940,8 +24611,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23981,8 +24652,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24032,8 +24703,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24073,8 +24744,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24124,8 +24795,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24165,8 +24836,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24216,8 +24887,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24257,8 +24928,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24308,8 +24979,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Route": "_framework/System.Text.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24349,8 +25020,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Route": "_framework/System.Text.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24400,8 +25071,8 @@ ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Route": "_framework/System.Text.RegularExpressions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24441,8 +25112,8 @@ ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Route": "_framework/System.Text.RegularExpressions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24492,8 +25163,8 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24533,8 +25204,8 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24584,8 +25255,8 @@ ] }, { - "Route": "_framework/System.IO.Pipelines.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Route": "_framework/System.Threading.Channels.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24625,8 +25296,8 @@ ] }, { - "Route": "_framework/System.IO.Pipelines.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Route": "_framework/System.Threading.Channels.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24676,8 +25347,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Route": "_framework/System.Threading.Overlapped.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24717,8 +25388,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Route": "_framework/System.Threading.Overlapped.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24768,8 +25439,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24809,8 +25480,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24860,8 +25531,8 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24901,8 +25572,8 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24952,8 +25623,8 @@ ] }, { - "Route": "_framework/System.IO.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24993,8 +25664,8 @@ ] }, { - "Route": "_framework/System.IO.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25044,8 +25715,8 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25085,8 +25756,8 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25136,8 +25807,8 @@ ] }, { - "Route": "_framework/System.Linq.Expressions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Route": "_framework/System.Threading.Thread.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25177,8 +25848,8 @@ ] }, { - "Route": "_framework/System.Linq.Expressions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Route": "_framework/System.Threading.Thread.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25228,8 +25899,8 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25269,8 +25940,8 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25320,8 +25991,8 @@ ] }, { - "Route": "_framework/System.Linq.Queryable.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25361,8 +26032,8 @@ ] }, { - "Route": "_framework/System.Linq.Queryable.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25412,8 +26083,8 @@ ] }, { - "Route": "_framework/System.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Route": "_framework/System.Threading.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25453,8 +26124,8 @@ ] }, { - "Route": "_framework/System.Linq.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Route": "_framework/System.Threading.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25504,8 +26175,8 @@ ] }, { - "Route": "_framework/System.Memory.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Route": "_framework/System.Transactions.Local.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25545,8 +26216,8 @@ ] }, { - "Route": "_framework/System.Memory.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Route": "_framework/System.Transactions.Local.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25596,8 +26267,8 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Route": "_framework/System.Transactions.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25637,8 +26308,8 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Route": "_framework/System.Transactions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25688,8 +26359,8 @@ ] }, { - "Route": "_framework/System.Net.Http.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Route": "_framework/System.ValueTuple.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25729,8 +26400,8 @@ ] }, { - "Route": "_framework/System.Net.Http.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Route": "_framework/System.ValueTuple.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25780,8 +26451,8 @@ ] }, { - "Route": "_framework/System.Net.HttpListener.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Route": "_framework/System.Web.HttpUtility.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25821,8 +26492,8 @@ ] }, { - "Route": "_framework/System.Net.HttpListener.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Route": "_framework/System.Web.HttpUtility.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25872,8 +26543,8 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Route": "_framework/System.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25913,8 +26584,8 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Route": "_framework/System.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25964,8 +26635,8 @@ ] }, { - "Route": "_framework/System.Net.NameResolution.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Route": "_framework/System.Windows.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26005,8 +26676,8 @@ ] }, { - "Route": "_framework/System.Net.NameResolution.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Route": "_framework/System.Windows.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26056,8 +26727,8 @@ ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Route": "_framework/System.Xml.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26097,8 +26768,8 @@ ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Route": "_framework/System.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26148,8 +26819,8 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26189,8 +26860,8 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26240,8 +26911,8 @@ ] }, { - "Route": "_framework/System.Net.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26281,8 +26952,8 @@ ] }, { - "Route": "_framework/System.Net.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26332,8 +27003,8 @@ ] }, { - "Route": "_framework/System.Net.Quic.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Route": "_framework/System.Xml.XDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26373,8 +27044,8 @@ ] }, { - "Route": "_framework/System.Net.Quic.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Route": "_framework/System.Xml.XDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26424,8 +27095,8 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26465,8 +27136,8 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26516,8 +27187,8 @@ ] }, { - "Route": "_framework/System.Net.Security.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26557,8 +27228,8 @@ ] }, { - "Route": "_framework/System.Net.Security.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26608,8 +27279,8 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26649,8 +27320,8 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26700,8 +27371,8 @@ ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26741,8 +27412,8 @@ ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26792,8 +27463,8 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Route": "_framework/System.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26833,8 +27504,8 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Route": "_framework/System.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26884,8 +27555,8 @@ ] }, { - "Route": "_framework/System.Net.WebClient.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Route": "_framework/System.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26925,8 +27596,8 @@ ] }, { - "Route": "_framework/System.Net.WebClient.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Route": "_framework/System.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26976,8 +27647,8 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Route": "_framework/WindowsBase.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27017,8 +27688,8 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Route": "_framework/WindowsBase.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27068,8 +27739,8 @@ ] }, { - "Route": "_framework/System.Net.WebProxy.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Route": "_framework/blazor.webassembly.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27086,7 +27757,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27109,8 +27780,8 @@ ] }, { - "Route": "_framework/System.Net.WebProxy.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27133,7 +27804,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27160,8 +27831,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Route": "_framework/blazorwasm-minimal.pdb.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27178,7 +27849,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27201,8 +27872,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Route": "_framework/blazorwasm-minimal.pdb", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27225,7 +27896,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27252,8 +27923,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Route": "_framework/blazorwasm-minimal.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27293,8 +27964,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Route": "_framework/blazorwasm-minimal.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27344,8 +28015,8 @@ ] }, { - "Route": "_framework/System.Net.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Route": "_framework/dotnet.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27362,7 +28033,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27385,8 +28056,8 @@ ] }, { - "Route": "_framework/System.Net.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Route": "_framework/dotnet.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27409,7 +28080,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27425,6 +28096,30 @@ } ], "EndpointProperties": [ + { + "Name": "PreloadAs", + "Value": "script" + }, + { + "Name": "PreloadCrossorigin", + "Value": "anonymous" + }, + { + "Name": "PreloadGroup", + "Value": "webassembly" + }, + { + "Name": "PreloadOrder", + "Value": "1" + }, + { + "Name": "PreloadPriority", + "Value": "high" + }, + { + "Name": "PreloadRel", + "Value": "preload" + }, { "Name": "integrity", "Value": "__integrity__" @@ -27436,8 +28131,8 @@ ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Route": "_framework/dotnet.js.map.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27454,7 +28149,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -27477,8 +28172,8 @@ ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Route": "_framework/dotnet.js.map", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27501,7 +28196,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -27528,8 +28223,8 @@ ] }, { - "Route": "_framework/System.Numerics.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Route": "_framework/dotnet.native.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27546,7 +28241,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27569,8 +28264,8 @@ ] }, { - "Route": "_framework/System.Numerics.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Route": "_framework/dotnet.native.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27593,7 +28288,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27620,8 +28315,8 @@ ] }, { - "Route": "_framework/System.ObjectModel.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Route": "_framework/dotnet.native.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27661,8 +28356,8 @@ ] }, { - "Route": "_framework/System.ObjectModel.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27712,8 +28407,8 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Route": "_framework/dotnet.runtime.js.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27730,7 +28425,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27753,8 +28448,8 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27777,7 +28472,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27804,8 +28499,8 @@ ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Route": "_framework/dotnet.runtime.js.map.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27822,7 +28517,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -27845,8 +28540,8 @@ ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Route": "_framework/dotnet.runtime.js.map", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27869,7 +28564,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -27896,8 +28591,8 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Route": "_framework/icudt_CJK.dat.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27914,7 +28609,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27937,8 +28632,8 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27961,7 +28656,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27988,8 +28683,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Route": "_framework/icudt_EFIGS.dat.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28006,7 +28701,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28029,8 +28724,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28053,7 +28748,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28080,8 +28775,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Route": "_framework/icudt_no_CJK.dat.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28098,7 +28793,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28121,8 +28816,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28145,7 +28840,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28172,8 +28867,8 @@ ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Route": "_framework/mscorlib.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28213,8 +28908,8 @@ ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Route": "_framework/mscorlib.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28264,8 +28959,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Route": "_framework/netstandard.wasm.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28305,8 +29000,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Route": "_framework/netstandard.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28356,8 +29051,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Route": "appsettings.development.json.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\appsettings.development.json.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28374,7 +29069,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/json" }, { "Name": "ETag", @@ -28397,8 +29092,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Route": "appsettings.development.json", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\appsettings.development.json.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28421,7 +29116,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/json" }, { "Name": "ETag", @@ -28448,8 +29143,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Route": "blazorwasm-minimal.bundle.scp.css.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28466,7 +29161,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28489,8 +29184,57 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Route": "blazorwasm-minimal.__fingerprint__.bundle.scp.css.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "__fingerprint__" + }, + { + "Name": "integrity", + "Value": "__integrity__" + }, + { + "Name": "label", + "Value": "blazorwasm-minimal.bundle.scp.css.gz" + } + ] + }, + { + "Route": "blazorwasm-minimal.bundle.scp.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28513,7 +29257,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28540,8 +29284,67 @@ ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Route": "blazorwasm-minimal.__fingerprint__.bundle.scp.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "__fingerprint__" + }, + { + "Name": "integrity", + "Value": "__integrity__" + }, + { + "Name": "label", + "Value": "blazorwasm-minimal.bundle.scp.css" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" + } + ] + }, + { + "Route": "blazorwasm-minimal.styles.css.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28558,7 +29361,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28581,8 +29384,57 @@ ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Route": "blazorwasm-minimal.__fingerprint__.styles.css.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "__fingerprint__" + }, + { + "Name": "integrity", + "Value": "__integrity__" + }, + { + "Name": "label", + "Value": "blazorwasm-minimal.styles.css.gz" + } + ] + }, + { + "Route": "blazorwasm-minimal.styles.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28605,7 +29457,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28632,49 +29484,8 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Reflection.Metadata.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Route": "blazorwasm-minimal.__fingerprint__.styles.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28685,7 +29496,7 @@ "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "no-cache" + "Value": "max-age=31536000, immutable" }, { "Name": "Content-Encoding", @@ -28697,7 +29508,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28713,10 +29524,18 @@ } ], "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "__fingerprint__" + }, { "Name": "integrity", "Value": "__integrity__" }, + { + "Name": "label", + "Value": "blazorwasm-minimal.styles.css" + }, { "Name": "original-resource", "Value": "__original-resource__" @@ -28724,8 +29543,8 @@ ] }, { - "Route": "_framework/System.Reflection.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Route": "css/app.css.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28742,7 +29561,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28765,8 +29584,8 @@ ] }, { - "Route": "_framework/System.Reflection.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28789,7 +29608,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -28816,8 +29635,8 @@ ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Route": "index.html.gz", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28834,7 +29653,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/html" }, { "Name": "ETag", @@ -28857,8 +29676,8 @@ ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Route": "index.html", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28881,7 +29700,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/html" }, { "Name": "ETag", @@ -28908,25 +29727,21 @@ ] }, { - "Route": "_framework/System.Reflection.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Route": "_framework/dotnet.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\dotnet.js", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28942,6 +29757,30 @@ } ], "EndpointProperties": [ + { + "Name": "PreloadAs", + "Value": "script" + }, + { + "Name": "PreloadCrossorigin", + "Value": "anonymous" + }, + { + "Name": "PreloadGroup", + "Value": "webassembly" + }, + { + "Name": "PreloadOrder", + "Value": "1" + }, + { + "Name": "PreloadPriority", + "Value": "high" + }, + { + "Name": "PreloadRel", + "Value": "preload" + }, { "Name": "integrity", "Value": "__integrity__" @@ -28949,31 +29788,21 @@ ] }, { - "Route": "_framework/System.Reflection.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28992,33 +29821,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.Reader.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Route": "blazorwasm-minimal.styles.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -29041,23 +29862,13 @@ ] }, { - "Route": "_framework/System.Resources.Reader.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "blazorwasm-minimal.__fingerprint__.styles.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" + "Value": "max-age=31536000, immutable" }, { "Name": "Content-Length", @@ -29065,7 +29876,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -29081,36 +29892,36 @@ } ], "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "__fingerprint__" + }, { "Name": "integrity", "Value": "__integrity__" }, { - "Name": "original-resource", - "Value": "__original-resource__" + "Name": "label", + "Value": "blazorwasm-minimal.styles.css" } ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", + "Route": "blazorwasm-minimal.bundle.scp.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -29133,23 +29944,13 @@ ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "blazorwasm-minimal.__fingerprint__.bundle.scp.css", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" + "Value": "max-age=31536000, immutable" }, { "Name": "Content-Length", @@ -29157,7 +29958,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -29173,29 +29974,29 @@ } ], "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "__fingerprint__" + }, { "Name": "integrity", "Value": "__integrity__" }, { - "Name": "original-resource", - "Value": "__original-resource__" + "Name": "label", + "Value": "blazorwasm-minimal.bundle.scp.css" } ] }, { - "Route": "_framework/System.Resources.Writer.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29225,24 +30026,51 @@ ] }, { - "Route": "_framework/System.Resources.Writer.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29268,26 +30096,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29317,24 +30137,14 @@ ] }, { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Components.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29360,26 +30170,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29409,24 +30211,14 @@ ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.CSharp.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29452,26 +30244,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29501,24 +30285,14 @@ ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29544,26 +30318,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Handles.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29593,24 +30359,14 @@ ] }, { - "Route": "_framework/System.Runtime.Handles.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29636,26 +30392,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29685,24 +30433,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29728,26 +30466,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29777,24 +30507,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29820,26 +30540,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29869,24 +30581,51 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29912,26 +30651,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29961,24 +30692,51 @@ ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.Extensions.Logging.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Extensions.Options.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30004,26 +30762,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Loader.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30053,24 +30803,14 @@ ] }, { - "Route": "_framework/System.Runtime.Loader.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30096,26 +30836,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Numerics.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", + "Route": "_framework/Microsoft.JSInterop.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30145,24 +30877,14 @@ ] }, { - "Route": "_framework/System.Runtime.Numerics.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.VisualBasic.Core.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30188,26 +30910,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "Route": "_framework/Microsoft.VisualBasic.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30237,24 +30951,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Win32.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30280,26 +30984,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "Route": "_framework/Microsoft.Win32.Registry.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30329,24 +31025,51 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", - "Selectors": [ + "Route": "_framework/System.AppContext.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Buffers.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30372,26 +31095,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "Route": "_framework/System.Collections.Concurrent.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30421,24 +31136,51 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Collections.Immutable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Collections.NonGeneric.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30464,26 +31206,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "Route": "_framework/System.Collections.Specialized.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30513,24 +31247,51 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Collections.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.ComponentModel.Annotations.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30556,26 +31317,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30605,24 +31358,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30648,26 +31391,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", + "Route": "_framework/System.ComponentModel.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30697,24 +31432,14 @@ ] }, { - "Route": "_framework/System.Runtime.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ComponentModel.TypeConverter.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30740,26 +31465,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", + "Route": "_framework/System.ComponentModel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30789,24 +31506,14 @@ ] }, { - "Route": "_framework/System.Security.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Configuration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30832,26 +31539,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Claims.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", + "Route": "_framework/System.Console.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30881,24 +31580,14 @@ ] }, { - "Route": "_framework/System.Security.Claims.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Core.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30924,26 +31613,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "Route": "_framework/System.Data.Common.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30973,24 +31654,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Data.DataSetExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31016,26 +31687,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "Route": "_framework/System.Data.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31065,24 +31728,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Diagnostics.Contracts.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31108,26 +31761,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "Route": "_framework/System.Diagnostics.Debug.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31157,24 +31802,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31200,26 +31872,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "Route": "_framework/System.Diagnostics.Process.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31249,24 +31913,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Diagnostics.StackTrace.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31292,26 +31983,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "Route": "_framework/System.Diagnostics.Tools.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31341,24 +32024,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Diagnostics.TraceSource.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31384,26 +32057,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "Route": "_framework/System.Diagnostics.Tracing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31433,24 +32098,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Drawing.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31476,26 +32131,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "Route": "_framework/System.Drawing.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31525,24 +32172,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Dynamic.Runtime.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31568,26 +32205,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", + "Route": "_framework/System.Formats.Asn1.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31617,24 +32246,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Formats.Tar.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Globalization.Calendars.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31660,26 +32316,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", + "Route": "_framework/System.Globalization.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31709,24 +32357,51 @@ ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Globalization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.Compression.Brotli.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31752,26 +32427,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Principal.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", + "Route": "_framework/System.IO.Compression.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31801,24 +32468,51 @@ ] }, { - "Route": "_framework/System.Security.Principal.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", - "Selectors": [ + "Route": "_framework/System.IO.Compression.ZipFile.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.Compression.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31844,26 +32538,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.SecureString.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31893,24 +32579,14 @@ ] }, { - "Route": "_framework/System.Security.SecureString.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31936,26 +32612,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", + "Route": "_framework/System.IO.FileSystem.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31985,24 +32653,14 @@ ] }, { - "Route": "_framework/System.Security.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.FileSystem.Watcher.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32028,26 +32686,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceModel.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", + "Route": "_framework/System.IO.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32077,24 +32727,14 @@ ] }, { - "Route": "_framework/System.ServiceModel.Web.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.IsolatedStorage.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32120,26 +32760,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceProcess.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", + "Route": "_framework/System.IO.MemoryMappedFiles.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32169,24 +32801,14 @@ ] }, { - "Route": "_framework/System.ServiceProcess.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Pipelines.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32212,26 +32834,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "Route": "_framework/System.IO.Pipes.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32261,24 +32875,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Pipes.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32304,26 +32908,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32353,24 +32949,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32396,26 +32982,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", + "Route": "_framework/System.Linq.AsyncEnumerable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32445,24 +33023,51 @@ ] }, { - "Route": "_framework/System.Text.Encoding.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Linq.Expressions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Linq.Parallel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32488,26 +33093,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", + "Route": "_framework/System.Linq.Queryable.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32537,24 +33134,51 @@ ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Memory.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32580,26 +33204,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", + "Route": "_framework/System.Net.Http.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32629,24 +33245,14 @@ ] }, { - "Route": "_framework/System.Text.Json.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Http.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32672,26 +33278,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32721,24 +33319,14 @@ ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Mail.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32764,26 +33352,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", + "Route": "_framework/System.Net.NameResolution.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32813,24 +33393,14 @@ ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.NetworkInformation.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32856,26 +33426,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Channels.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32905,24 +33467,51 @@ ] }, { - "Route": "_framework/System.Threading.Channels.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.Quic.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32948,26 +33537,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", + "Route": "_framework/System.Net.Requests.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32997,24 +33578,51 @@ ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.Security.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.ServerSentEvents.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33040,26 +33648,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33089,24 +33689,51 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.Sockets.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.WebClient.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33132,26 +33759,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33181,24 +33800,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.WebProxy.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33224,26 +33833,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33273,24 +33874,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.WebSockets.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33316,26 +33907,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", + "Route": "_framework/System.Net.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33365,24 +33948,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Numerics.Vectors.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33408,26 +33981,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Thread.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", + "Route": "_framework/System.Numerics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33457,24 +34022,14 @@ ] }, { - "Route": "_framework/System.Threading.Thread.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ObjectModel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33500,26 +34055,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33549,24 +34096,14 @@ ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Private.DataContractSerialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33592,26 +34129,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Timer.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33641,24 +34170,14 @@ ] }, { - "Route": "_framework/System.Threading.Timer.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Private.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33684,26 +34203,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33733,24 +34244,51 @@ ] }, { - "Route": "_framework/System.Threading.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.DispatchProxy.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33776,26 +34314,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.Local.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33825,24 +34355,51 @@ ] }, { - "Route": "_framework/System.Transactions.Local.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.Emit.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Reflection.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33868,26 +34425,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33917,24 +34466,14 @@ ] }, { - "Route": "_framework/System.Transactions.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Reflection.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33960,26 +34499,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ValueTuple.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34009,24 +34540,14 @@ ] }, { - "Route": "_framework/System.ValueTuple.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Reflection.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34052,26 +34573,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34101,24 +34614,14 @@ ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Resources.ResourceManager.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34144,26 +34647,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34193,24 +34688,51 @@ ] }, { - "Route": "_framework/System.Web.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34236,26 +34758,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Windows.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34285,24 +34799,51 @@ ] }, { - "Route": "_framework/System.Windows.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Runtime.Handles.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34328,26 +34869,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34377,24 +34910,51 @@ ] }, { - "Route": "_framework/System.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Runtime.InteropServices.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.Intrinsics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34420,26 +34980,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34469,24 +35021,14 @@ ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Numerics.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34512,26 +35054,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.Serialization.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34561,24 +35095,14 @@ ] }, { - "Route": "_framework/System.Xml.Serialization.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Serialization.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34604,26 +35128,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34653,24 +35169,14 @@ ] }, { - "Route": "_framework/System.Xml.XDocument.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Serialization.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34696,26 +35202,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34745,24 +35243,14 @@ ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34788,26 +35276,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34837,24 +35317,14 @@ ] }, { - "Route": "_framework/System.Xml.XPath.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Claims.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34880,26 +35350,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34929,24 +35391,14 @@ ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Cryptography.Cng.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34972,26 +35424,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35021,24 +35465,51 @@ ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Cryptography.Encoding.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35064,26 +35535,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35113,24 +35576,51 @@ ] }, { - "Route": "_framework/System.Xml.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Cryptography.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35156,26 +35646,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35205,24 +35687,14 @@ ] }, { - "Route": "_framework/System.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Principal.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35248,26 +35720,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/WindowsBase.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35297,24 +35761,14 @@ ] }, { - "Route": "_framework/WindowsBase.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35340,33 +35794,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazor.webassembly.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "Route": "_framework/System.ServiceModel.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35389,31 +35835,21 @@ ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ServiceProcess.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35432,33 +35868,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm-minimal.pdb.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35481,31 +35909,21 @@ ] }, { - "Route": "_framework/blazorwasm-minimal.pdb", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.Encoding.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35524,26 +35942,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm-minimal.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35573,24 +35983,14 @@ ] }, { - "Route": "_framework/blazorwasm-minimal.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.Encodings.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35616,33 +36016,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "Route": "_framework/System.Text.Json.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35665,31 +36057,21 @@ ] }, { - "Route": "_framework/dotnet.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.RegularExpressions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35705,60 +36087,28 @@ } ], "EndpointProperties": [ - { - "Name": "PreloadAs", - "Value": "script" - }, - { - "Name": "PreloadCrossorigin", - "Value": "anonymous" - }, - { - "Name": "PreloadGroup", - "Value": "webassembly" - }, - { - "Name": "PreloadOrder", - "Value": "1" - }, - { - "Name": "PreloadPriority", - "Value": "high" - }, - { - "Name": "PreloadRel", - "Value": "preload" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.map.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", + "Route": "_framework/System.Threading.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35781,31 +36131,21 @@ ] }, { - "Route": "_framework/dotnet.js.map", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Channels.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35824,33 +36164,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", + "Route": "_framework/System.Threading.Overlapped.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35873,31 +36205,21 @@ ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -35916,26 +36238,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35965,24 +36279,14 @@ ] }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Tasks.Parallel.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36008,33 +36312,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", + "Route": "_framework/System.Threading.Tasks.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36057,31 +36353,21 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Thread.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36100,33 +36386,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.map.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36149,31 +36427,21 @@ ] }, { - "Route": "_framework/dotnet.runtime.js.map", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Timer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36192,33 +36460,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_CJK.dat.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "Route": "_framework/System.Threading.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36241,31 +36501,21 @@ ] }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Transactions.Local.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36284,33 +36534,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_EFIGS.dat.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "Route": "_framework/System.Transactions.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36333,31 +36575,21 @@ ] }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ValueTuple.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36376,33 +36608,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_no_CJK.dat.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "Route": "_framework/System.Web.HttpUtility.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36425,31 +36649,21 @@ ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Web.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36468,26 +36682,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/mscorlib.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", + "Route": "_framework/System.Windows.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36517,24 +36723,14 @@ ] }, { - "Route": "_framework/mscorlib.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36560,26 +36756,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/netstandard.wasm.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36609,24 +36797,14 @@ ] }, { - "Route": "_framework/netstandard.wasm", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.Serialization.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36652,33 +36830,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "appsettings.development.json.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\appsettings.development.json.gz", + "Route": "_framework/System.Xml.XDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/json" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36701,31 +36871,21 @@ ] }, { - "Route": "appsettings.development.json", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\appsettings.development.json.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/json" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36744,33 +36904,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "blazorwasm-minimal.bundle.scp.css.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", + "Route": "_framework/System.Xml.XPath.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36793,17 +36945,13 @@ ] }, { - "Route": "blazorwasm-minimal.__fingerprint__.bundle.scp.css.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" + "Value": "no-cache" }, { "Name": "Content-Length", @@ -36811,7 +36959,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36827,46 +36975,28 @@ } ], "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "__fingerprint__" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "label", - "Value": "blazorwasm-minimal.bundle.scp.css.gz" } ] }, { - "Route": "blazorwasm-minimal.bundle.scp.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.XmlSerializer.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36885,31 +37015,17 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "blazorwasm-minimal.__fingerprint__.bundle.scp.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]!.bundle.scp.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" + "Value": "no-cache" }, { "Name": "Content-Length", @@ -36917,7 +37033,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36933,44 +37049,28 @@ } ], "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "__fingerprint__" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "label", - "Value": "blazorwasm-minimal.bundle.scp.css" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "blazorwasm-minimal.styles.css.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", + "Route": "_framework/System.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36993,17 +37093,13 @@ ] }, { - "Route": "blazorwasm-minimal.__fingerprint__.styles.css.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", + "Route": "_framework/WindowsBase.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" + "Value": "no-cache" }, { "Name": "Content-Length", @@ -37011,7 +37107,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37027,46 +37123,28 @@ } ], "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "__fingerprint__" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "label", - "Value": "blazorwasm-minimal.styles.css.gz" } ] }, { - "Route": "blazorwasm-minimal.styles.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/blazorwasm-minimal.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm-minimal.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37085,31 +37163,17 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "blazorwasm-minimal.__fingerprint__.styles.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\blazorwasm-minimal#[.{fingerprint=__fingerprint__}]?.styles.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/mscorlib.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" + "Value": "no-cache" }, { "Name": "Content-Length", @@ -37117,7 +37181,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37133,44 +37197,28 @@ } ], "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "__fingerprint__" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "label", - "Value": "blazorwasm-minimal.styles.css" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "css/app.css.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", + "Route": "_framework/netstandard.wasm", + "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37193,31 +37241,21 @@ ] }, { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "appsettings.development.json", + "AssetFile": "${ProjectPath}\\wwwroot\\appsettings.development.json", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/json" }, { "Name": "ETag", @@ -37236,33 +37274,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "index.html.gz", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\wwwroot\\css\\app.css", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "text/css" }, { "Name": "ETag", @@ -37286,23 +37316,13 @@ }, { "Route": "index.html", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "AssetFile": "${ProjectPath}\\wwwroot\\index.html", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37328,16 +37348,12 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Route": "_framework/dotnet.js.map", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "Selectors": [], "ResponseHeaders": [ { @@ -37350,7 +37366,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/plain" }, { "Name": "ETag", @@ -37373,8 +37389,8 @@ ] }, { - "Route": "blazorwasm-minimal.styles.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "Selectors": [], "ResponseHeaders": [ { @@ -37387,7 +37403,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/javascript" }, { "Name": "ETag", @@ -37410,13 +37426,13 @@ ] }, { - "Route": "blazorwasm-minimal.__fingerprint__.styles.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" + "Value": "no-cache" }, { "Name": "Content-Length", @@ -37424,7 +37440,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37440,23 +37456,15 @@ } ], "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "__fingerprint__" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "label", - "Value": "blazorwasm-minimal.styles.css" } ] }, { - "Route": "blazorwasm-minimal.bundle.scp.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "Selectors": [], "ResponseHeaders": [ { @@ -37469,7 +37477,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/javascript" }, { "Name": "ETag", @@ -37492,13 +37500,13 @@ ] }, { - "Route": "blazorwasm-minimal.__fingerprint__.bundle.scp.css", - "AssetFile": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", + "Route": "_framework/dotnet.runtime.js.map", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", - "Value": "max-age=31536000, immutable" + "Value": "no-cache" }, { "Name": "Content-Length", @@ -37506,7 +37514,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/plain" }, { "Name": "ETag", @@ -37522,23 +37530,15 @@ } ], "EndpointProperties": [ - { - "Name": "fingerprint", - "Value": "__fingerprint__" - }, { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "label", - "Value": "blazorwasm-minimal.bundle.scp.css" } ] }, { - "Route": "appsettings.development.json", - "AssetFile": "${ProjectPath}\\wwwroot\\appsettings.development.json", + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "Selectors": [], "ResponseHeaders": [ { @@ -37551,7 +37551,7 @@ }, { "Name": "Content-Type", - "Value": "application/json" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -37574,8 +37574,8 @@ ] }, { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\wwwroot\\css\\app.css", + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "Selectors": [], "ResponseHeaders": [ { @@ -37588,7 +37588,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -37611,8 +37611,8 @@ ] }, { - "Route": "index.html", - "AssetFile": "${ProjectPath}\\wwwroot\\index.html", + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "Selectors": [], "ResponseHeaders": [ { @@ -37625,7 +37625,7 @@ }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "application/octet-stream" }, { "Name": "ETag", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json index 836bc8cebda0..360f6432a8df 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json @@ -93,265 +93,35 @@ "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetKind": "Build", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetKind": "Build", + "RelativePath": "_framework/blazor.webassembly.js", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetTraitValue": "boot", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${Tfm}\\blazor.webassembly.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "RelativePath": "_framework/blazorwasm.pdb", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", @@ -359,9557 +129,9580 @@ "AssetMergeSource": "", "RelatedAsset": "", "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetTraitValue": "symbol", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetKind": "Build", + "RelativePath": "Fake-License.txt.gz", + "AssetKind": "All", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", + "RelativePath": "_framework/Microsoft.CSharp.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.CSharp.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.wasm", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/RazorClassLibrary.pdb", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "symbol", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/RazorClassLibrary.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.AppContext.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Buffers.wasm", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Options.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Options.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.wasm", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.wasm", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", + "RelativePath": "_framework/Microsoft.JSInterop.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.JSInterop.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "RelativePath": "_framework/Microsoft.VisualBasic.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.VisualBasic.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", + "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", + "RelativePath": "_framework/Microsoft.Win32.Registry.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\Microsoft.Win32.Registry.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.wasm", + "RelativePath": "_framework/RazorClassLibrary.pdb.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\_framework\\RazorClassLibrary.pdb.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Configuration.wasm", + "RelativePath": "_framework/RazorClassLibrary.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\RazorClassLibrary.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Console.wasm", + "RelativePath": "_framework/System.AppContext.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.AppContext.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Core.wasm", + "RelativePath": "_framework/System.Buffers.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Buffers.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.wasm", + "RelativePath": "_framework/System.Collections.Concurrent.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Concurrent.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.wasm", + "RelativePath": "_framework/System.Collections.Immutable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Immutable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.wasm", + "RelativePath": "_framework/System.Collections.NonGeneric.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.NonGeneric.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.wasm", + "RelativePath": "_framework/System.Collections.Specialized.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.Specialized.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.wasm", + "RelativePath": "_framework/System.Collections.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Collections.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "RelativePath": "_framework/System.ComponentModel.Annotations.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.Annotations.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.wasm", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm", + "RelativePath": "_framework/System.ComponentModel.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.wasm", + "RelativePath": "_framework/System.ComponentModel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ComponentModel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm", + "RelativePath": "_framework/System.Configuration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Configuration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", + "RelativePath": "_framework/System.Console.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Console.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.wasm", + "RelativePath": "_framework/System.Core.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Core.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.wasm", + "RelativePath": "_framework/System.Data.Common.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.Common.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.wasm", + "RelativePath": "_framework/System.Data.DataSetExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.DataSetExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.wasm", + "RelativePath": "_framework/System.Data.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Data.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Tar.wasm", + "RelativePath": "_framework/System.Diagnostics.Contracts.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Contracts.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.wasm", + "RelativePath": "_framework/System.Diagnostics.Debug.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Debug.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.wasm", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.wasm", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.wasm", + "RelativePath": "_framework/System.Diagnostics.Process.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Process.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm", + "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.wasm", + "RelativePath": "_framework/System.Diagnostics.Tools.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Tools.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm", + "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "RelativePath": "_framework/System.Diagnostics.Tracing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Diagnostics.Tracing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm", + "RelativePath": "_framework/System.Drawing.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "AssetMergeSource": "", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Drawing.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", + "RelativePath": "_framework/System.Drawing.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Drawing.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.wasm", + "RelativePath": "_framework/System.Dynamic.Runtime.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Dynamic.Runtime.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.wasm", + "RelativePath": "_framework/System.Formats.Asn1.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Formats.Asn1.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm", + "RelativePath": "_framework/System.Formats.Tar.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Formats.Tar.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.wasm", + "RelativePath": "_framework/System.Globalization.Calendars.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.Calendars.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm", + "RelativePath": "_framework/System.Globalization.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.wasm", + "RelativePath": "_framework/System.Globalization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Globalization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "RelativePath": "_framework/System.IO.Compression.Brotli.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.Brotli.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.wasm", + "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm", + "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.wasm", + "RelativePath": "_framework/System.IO.Compression.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Compression.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.wasm", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.wasm", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.wasm", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Memory.wasm", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.wasm", + "RelativePath": "_framework/System.IO.FileSystem.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.FileSystem.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.wasm", + "RelativePath": "_framework/System.IO.IsolatedStorage.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.IsolatedStorage.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.wasm", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.wasm", + "RelativePath": "_framework/System.IO.Pipelines.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipelines.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.wasm", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.wasm", + "RelativePath": "_framework/System.IO.Pipes.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.Pipes.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.wasm", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.wasm", + "RelativePath": "_framework/System.IO.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.IO.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.wasm", + "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.wasm", + "RelativePath": "_framework/System.Linq.Expressions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Expressions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.wasm", + "RelativePath": "_framework/System.Linq.Parallel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Parallel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServerSentEvents.wasm", + "RelativePath": "_framework/System.Linq.Queryable.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.Queryable.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.wasm", + "RelativePath": "_framework/System.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.wasm", + "RelativePath": "_framework/System.Memory.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Memory.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.wasm", + "RelativePath": "_framework/System.Net.Http.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Http.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm", + "RelativePath": "_framework/System.Net.Http.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Http.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.wasm", + "RelativePath": "_framework/System.Net.HttpListener.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.HttpListener.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.wasm", + "RelativePath": "_framework/System.Net.Mail.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Mail.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.wasm", + "RelativePath": "_framework/System.Net.NameResolution.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.NameResolution.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.wasm", + "RelativePath": "_framework/System.Net.NetworkInformation.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.NetworkInformation.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.wasm", + "RelativePath": "_framework/System.Net.Ping.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Ping.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.wasm", + "RelativePath": "_framework/System.Net.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.wasm", + "RelativePath": "_framework/System.Net.Quic.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Quic.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.wasm", + "RelativePath": "_framework/System.Net.Requests.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Requests.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.wasm", + "RelativePath": "_framework/System.Net.Security.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Security.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.wasm", + "RelativePath": "_framework/System.Net.ServerSentEvents.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.ServerSentEvents.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.wasm", + "RelativePath": "_framework/System.Net.ServicePoint.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.ServicePoint.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.wasm", + "RelativePath": "_framework/System.Net.Sockets.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.Sockets.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm", + "RelativePath": "_framework/System.Net.WebClient.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebClient.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", + "RelativePath": "_framework/System.Net.WebProxy.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebProxy.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.wasm", + "RelativePath": "_framework/System.Net.WebSockets.Client.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebSockets.Client.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.wasm", + "RelativePath": "_framework/System.Net.WebSockets.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.WebSockets.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.wasm", + "RelativePath": "_framework/System.Net.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Net.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.wasm", + "RelativePath": "_framework/System.Numerics.Vectors.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Numerics.Vectors.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm", + "RelativePath": "_framework/System.Numerics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Numerics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.wasm", + "RelativePath": "_framework/System.ObjectModel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ObjectModel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.wasm", + "RelativePath": "_framework/System.Private.CoreLib.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.CoreLib.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.wasm", + "RelativePath": "_framework/System.Private.DataContractSerialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.DataContractSerialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.wasm", + "RelativePath": "_framework/System.Private.Uri.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Uri.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "RelativePath": "_framework/System.Private.Xml.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Xml.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "RelativePath": "_framework/System.Private.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Private.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.wasm", + "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.wasm", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "RelativePath": "_framework/System.Reflection.Emit.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Emit.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.wasm", + "RelativePath": "_framework/System.Reflection.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.wasm", + "RelativePath": "_framework/System.Reflection.Metadata.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Metadata.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.wasm", + "RelativePath": "_framework/System.Reflection.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.wasm", + "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm", + "RelativePath": "_framework/System.Reflection.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Reflection.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm", + "RelativePath": "_framework/System.Resources.Reader.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.Reader.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm", + "RelativePath": "_framework/System.Resources.ResourceManager.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.ResourceManager.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm", + "RelativePath": "_framework/System.Resources.Writer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Resources.Writer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.wasm", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.wasm", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.wasm", + "RelativePath": "_framework/System.Runtime.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.wasm", + "RelativePath": "_framework/System.Runtime.Handles.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Handles.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm", + "RelativePath": "_framework/System.Runtime.InteropServices.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.InteropServices.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm", + "RelativePath": "_framework/System.Runtime.Intrinsics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Intrinsics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "RelativePath": "_framework/System.Runtime.Loader.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Loader.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm", + "RelativePath": "_framework/System.Runtime.Numerics.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Numerics.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.wasm", + "RelativePath": "_framework/System.Runtime.Serialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.Serialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.wasm", + "RelativePath": "_framework/System.Runtime.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Runtime.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.wasm", + "RelativePath": "_framework/System.Security.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.wasm", + "RelativePath": "_framework/System.Security.Claims.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Claims.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.wasm", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.wasm", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.AccessControl.wasm", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.wasm", + "RelativePath": "_framework/System.Security.Cryptography.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Cryptography.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.wasm", + "RelativePath": "_framework/System.Security.Principal.Windows.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Principal.Windows.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm", + "RelativePath": "_framework/System.Security.Principal.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.Principal.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm", + "RelativePath": "_framework/System.Security.SecureString.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.SecureString.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm", + "RelativePath": "_framework/System.Security.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Security.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.wasm", + "RelativePath": "_framework/System.ServiceModel.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ServiceModel.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.wasm", + "RelativePath": "_framework/System.ServiceProcess.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ServiceProcess.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.wasm", + "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.wasm", + "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.wasm", + "RelativePath": "_framework/System.Text.Encoding.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encoding.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.wasm", + "RelativePath": "_framework/System.Text.Encodings.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Encodings.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.wasm", + "RelativePath": "_framework/System.Text.Json.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.Json.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.wasm", + "RelativePath": "_framework/System.Text.RegularExpressions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Text.RegularExpressions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.wasm", + "RelativePath": "_framework/System.Threading.AccessControl.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.AccessControl.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.wasm", + "RelativePath": "_framework/System.Threading.Channels.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Channels.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Windows.wasm", + "RelativePath": "_framework/System.Threading.Overlapped.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Overlapped.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.wasm", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.wasm", + "RelativePath": "_framework/System.Threading.Tasks.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Tasks.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm", + "RelativePath": "_framework/System.Threading.Thread.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Thread.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.wasm", + "RelativePath": "_framework/System.Threading.ThreadPool.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.ThreadPool.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.wasm", + "RelativePath": "_framework/System.Threading.Timer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.Timer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.wasm", + "RelativePath": "_framework/System.Threading.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Threading.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.wasm", + "RelativePath": "_framework/System.Transactions.Local.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Transactions.Local.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/System.wasm", + "RelativePath": "_framework/System.Transactions.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Transactions.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/WindowsBase.wasm", + "RelativePath": "_framework/System.ValueTuple.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.ValueTuple.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js", - "AssetKind": "All", + "RelativePath": "_framework/System.Web.HttpUtility.wasm.gz", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "boot", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${Tfm}\\blazor.webassembly.js", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Web.HttpUtility.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm.pdb", + "RelativePath": "_framework/System.Web.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "symbol", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Web.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm.wasm", + "RelativePath": "_framework/System.Windows.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Windows.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js", + "RelativePath": "_framework/System.Xml.Linq.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "manifest", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.Linq.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.map", + "RelativePath": "_framework/System.Xml.ReaderWriter.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.ReaderWriter.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", + "RelativePath": "_framework/System.Xml.Serialization.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.Serialization.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", + "RelativePath": "_framework/System.Xml.XDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", + "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.map", + "RelativePath": "_framework/System.Xml.XPath.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XPath.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", + "RelativePath": "_framework/System.Xml.XmlDocument.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XmlDocument.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", + "RelativePath": "_framework/System.Xml.XmlSerializer.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.XmlSerializer.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", + "RelativePath": "_framework/System.Xml.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.Xml.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/mscorlib.wasm", + "RelativePath": "_framework/System.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\System.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/netstandard.wasm", + "RelativePath": "_framework/WindowsBase.wasm.gz", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Primary", + "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "runtime", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\WindowsBase.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "Fake-License.txt.gz", + "RelativePath": "_framework/blazor.webassembly.js.gz", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", + "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", + "RelativePath": "_framework/blazorwasm.pdb.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazorwasm.pdb.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", + "RelativePath": "_framework/blazorwasm.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\blazorwasm.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", + "RelativePath": "_framework/dotnet.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\dotnet.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "RelativePath": "_framework/dotnet.js.map.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.js.map.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm.gz", + "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", + "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.CSharp.wasm.gz", + "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "RelativePath": "_framework/dotnet.runtime.js.map.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.map.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "RelativePath": "_framework/icudt_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "RelativePath": "_framework/icudt_EFIGS.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", + "RelativePath": "_framework/icudt_no_CJK.dat.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "RelativePath": "_framework/mscorlib.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\mscorlib.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", + "RelativePath": "_framework/netstandard.wasm.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\_framework\\netstandard.wasm.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm.gz", + "RelativePath": "css/app.css.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", + "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\css\\app.css.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "RelativePath": "custom-service-worker-assets.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", - "AssetKind": "Build", + "RelativePath": "index.html.gz", + "AssetKind": "All", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "RelativePath": "serviceworkers/my-service-worker.js.gz", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\serviceworkers\\my-service-worker.js.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "RelativePath": "_framework/dotnet.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "manifest", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "JSModule", + "AssetTraitValue": "JSLibraryModule", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "BasePath": "/", + "RelativePath": "custom-service-worker-assets.js", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "BlazorServiceWorker", + "AssetTraitValue": "ServiceWorkerManifest", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "RelativePath": "serviceworkers/my-service-worker.js", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "BlazorServiceWorker", + "AssetTraitValue": "ServiceWorkerJs", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\serviceworkers\\my-service-worker.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Options.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.JSInterop.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm.gz", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.VisualBasic.wasm.gz", + "RelativePath": "_framework/Microsoft.CSharp.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.Win32.Registry.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/RazorClassLibrary.pdb.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/RazorClassLibrary.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.AppContext.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Buffers.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Concurrent.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Immutable.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.NonGeneric.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.Specialized.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Collections.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Annotations.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.Primitives.wasm.gz", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm.gz", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ComponentModel.wasm.gz", + "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Configuration.wasm.gz", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Console.wasm.gz", + "RelativePath": "_framework/Microsoft.VisualBasic.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Core.wasm.gz", + "RelativePath": "_framework/Microsoft.Win32.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.Common.wasm.gz", + "RelativePath": "_framework/Microsoft.Win32.Registry.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.DataSetExtensions.wasm.gz", + "RelativePath": "_framework/RazorClassLibrary.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Data.wasm.gz", + "RelativePath": "_framework/System.AppContext.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Contracts.wasm.gz", + "RelativePath": "_framework/System.Buffers.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Debug.wasm.gz", + "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", + "RelativePath": "_framework/System.Collections.Immutable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", + "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Process.wasm.gz", + "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm.gz", + "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tools.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Diagnostics.Tracing.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.Primitives.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Drawing.wasm.gz", + "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Dynamic.Runtime.wasm.gz", + "RelativePath": "_framework/System.Configuration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Asn1.wasm.gz", + "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Formats.Tar.wasm.gz", + "RelativePath": "_framework/System.Core.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Calendars.wasm.gz", + "RelativePath": "_framework/System.Data.Common.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.Extensions.wasm.gz", + "RelativePath": "_framework/System.Data.DataSetExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Globalization.wasm.gz", + "RelativePath": "_framework/System.Data.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.Brotli.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Contracts.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Debug.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Compression.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Process.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.StackTrace.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Tools.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.FileSystem.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.TraceSource.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.IsolatedStorage.wasm.gz", + "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm.gz", + "RelativePath": "_framework/System.Drawing.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipelines.wasm.gz", + "RelativePath": "_framework/System.Drawing.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Dynamic.Runtime.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.Pipes.wasm.gz", + "RelativePath": "_framework/System.Formats.Asn1.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", + "RelativePath": "_framework/System.Formats.Tar.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.IO.wasm.gz", + "RelativePath": "_framework/System.Globalization.Calendars.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm.gz", + "RelativePath": "_framework/System.Globalization.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Expressions.wasm.gz", + "RelativePath": "_framework/System.Globalization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Parallel.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.Brotli.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.Queryable.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.FileSystem.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Linq.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.ZipFile.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Memory.wasm.gz", + "RelativePath": "_framework/System.IO.Compression.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.Json.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Http.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.HttpListener.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Mail.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NameResolution.wasm.gz", + "RelativePath": "_framework/System.IO.FileSystem.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.NetworkInformation.wasm.gz", + "RelativePath": "_framework/System.IO.IsolatedStorage.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Ping.wasm.gz", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Primitives.wasm.gz", + "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Quic.wasm.gz", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Requests.wasm.gz", + "RelativePath": "_framework/System.IO.Pipes.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Security.wasm.gz", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServerSentEvents.wasm.gz", + "RelativePath": "_framework/System.IO.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.ServicePoint.wasm.gz", + "RelativePath": "_framework/System.Linq.AsyncEnumerable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.Sockets.wasm.gz", + "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebClient.wasm.gz", + "RelativePath": "_framework/System.Linq.Parallel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm.gz", + "RelativePath": "_framework/System.Linq.Queryable.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebProxy.wasm.gz", + "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.Client.wasm.gz", + "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.WebSockets.wasm.gz", + "RelativePath": "_framework/System.Net.Http.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Net.wasm.gz", + "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.Vectors.wasm.gz", + "RelativePath": "_framework/System.Net.HttpListener.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Numerics.wasm.gz", + "RelativePath": "_framework/System.Net.Mail.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ObjectModel.wasm.gz", + "RelativePath": "_framework/System.Net.NameResolution.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.CoreLib.wasm.gz", + "RelativePath": "_framework/System.Net.NetworkInformation.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.DataContractSerialization.wasm.gz", + "RelativePath": "_framework/System.Net.Ping.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Uri.wasm.gz", + "RelativePath": "_framework/System.Net.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.Linq.wasm.gz", + "RelativePath": "_framework/System.Net.Quic.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Private.Xml.wasm.gz", + "RelativePath": "_framework/System.Net.Requests.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm.gz", + "RelativePath": "_framework/System.Net.Security.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", + "RelativePath": "_framework/System.Net.ServerSentEvents.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", + "RelativePath": "_framework/System.Net.ServicePoint.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Emit.wasm.gz", + "RelativePath": "_framework/System.Net.Sockets.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Extensions.wasm.gz", + "RelativePath": "_framework/System.Net.WebClient.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Metadata.wasm.gz", + "RelativePath": "_framework/System.Net.WebHeaderCollection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.Primitives.wasm.gz", + "RelativePath": "_framework/System.Net.WebProxy.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm.gz", + "RelativePath": "_framework/System.Net.WebSockets.Client.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Reflection.wasm.gz", + "RelativePath": "_framework/System.Net.WebSockets.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Reader.wasm.gz", + "RelativePath": "_framework/System.Net.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.ResourceManager.wasm.gz", + "RelativePath": "_framework/System.Numerics.Vectors.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Resources.Writer.wasm.gz", + "RelativePath": "_framework/System.Numerics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", + "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", + "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Extensions.wasm.gz", + "RelativePath": "_framework/System.Private.DataContractSerialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Handles.wasm.gz", + "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", + "RelativePath": "_framework/System.Private.Xml.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "RelativePath": "_framework/System.Private.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.InteropServices.wasm.gz", + "RelativePath": "_framework/System.Reflection.DispatchProxy.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Intrinsics.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Loader.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Numerics.wasm.gz", + "RelativePath": "_framework/System.Reflection.Emit.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", + "RelativePath": "_framework/System.Reflection.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm.gz", + "RelativePath": "_framework/System.Reflection.Metadata.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", + "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm.gz", + "RelativePath": "_framework/System.Reflection.TypeExtensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.Serialization.wasm.gz", + "RelativePath": "_framework/System.Reflection.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Runtime.wasm.gz", + "RelativePath": "_framework/System.Resources.Reader.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Claims.wasm.gz", + "RelativePath": "_framework/System.Resources.Writer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm.gz", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm.gz", + "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm.gz", + "RelativePath": "_framework/System.Runtime.Handles.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", + "RelativePath": "_framework/System.Runtime.InteropServices.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Cryptography.wasm.gz", + "RelativePath": "_framework/System.Runtime.Intrinsics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.Windows.wasm.gz", + "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.Principal.wasm.gz", + "RelativePath": "_framework/System.Runtime.Numerics.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.SecureString.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Security.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceModel.Web.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ServiceProcess.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm.gz", + "RelativePath": "_framework/System.Runtime.Serialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm.gz", + "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encoding.wasm.gz", + "RelativePath": "_framework/System.Security.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Encodings.Web.wasm.gz", + "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.Json.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Text.RegularExpressions.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Cng.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.AccessControl.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Csp.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.AccessControl.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Channels.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Overlapped.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm.gz", + "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Tasks.wasm.gz", + "RelativePath": "_framework/System.Security.Principal.Windows.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Thread.wasm.gz", + "RelativePath": "_framework/System.Security.Principal.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.ThreadPool.wasm.gz", + "RelativePath": "_framework/System.Security.SecureString.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.Timer.wasm.gz", + "RelativePath": "_framework/System.Security.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Threading.wasm.gz", + "RelativePath": "_framework/System.ServiceModel.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.Local.wasm.gz", + "RelativePath": "_framework/System.ServiceProcess.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Transactions.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.CodePages.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.ValueTuple.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.HttpUtility.wasm.gz", + "RelativePath": "_framework/System.Text.Encoding.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Web.wasm.gz", + "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Windows.wasm.gz", + "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Linq.wasm.gz", + "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.ReaderWriter.wasm.gz", + "RelativePath": "_framework/System.Threading.AccessControl.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.Serialization.wasm.gz", + "RelativePath": "_framework/System.Threading.Channels.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XDocument.wasm.gz", + "RelativePath": "_framework/System.Threading.Overlapped.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XPath.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlDocument.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.XmlSerializer.wasm.gz", + "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.Xml.wasm.gz", + "RelativePath": "_framework/System.Threading.Thread.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/System.wasm.gz", + "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/WindowsBase.wasm.gz", + "RelativePath": "_framework/System.Threading.Timer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazor.webassembly.js.gz", - "AssetKind": "All", + "RelativePath": "_framework/System.Threading.wasm", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm.pdb.gz", + "RelativePath": "_framework/System.Transactions.Local.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/blazorwasm.wasm.gz", + "RelativePath": "_framework/System.Transactions.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.gz", + "RelativePath": "_framework/System.ValueTuple.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.js.map.gz", + "RelativePath": "_framework/System.Web.HttpUtility.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.map.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js.gz", + "RelativePath": "_framework/System.Web.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm.gz", + "RelativePath": "_framework/System.Windows.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.gz", + "RelativePath": "_framework/System.Xml.Linq.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js.map.gz", + "RelativePath": "_framework/System.Xml.ReaderWriter.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.map.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat.gz", + "RelativePath": "_framework/System.Xml.Serialization.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat.gz", + "RelativePath": "_framework/System.Xml.XDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat.gz", + "RelativePath": "_framework/System.Xml.XPath.XDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/mscorlib.wasm.gz", + "RelativePath": "_framework/System.Xml.XPath.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/netstandard.wasm.gz", + "RelativePath": "_framework/System.Xml.XmlDocument.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.wasm.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "css/app.css.gz", + "RelativePath": "_framework/System.Xml.XmlSerializer.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", + "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\css\\app.css.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "custom-service-worker-assets.js.gz", + "RelativePath": "_framework/System.Xml.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "index.html.gz", - "AssetKind": "All", + "RelativePath": "_framework/System.wasm", + "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html.gz", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "serviceworkers/my-service-worker.js.gz", + "RelativePath": "_framework/WindowsBase.wasm", "AssetKind": "Build", "AssetMode": "All", - "AssetRole": "Alternative", + "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\serviceworkers\\my-service-worker.js.gz", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "RelativePath": "_framework/blazorwasm.wasm", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "JSModule", - "AssetTraitValue": "JSLibraryModule", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "custom-service-worker-assets.js", + "RelativePath": "_framework/mscorlib.wasm", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "BlazorServiceWorker", - "AssetTraitValue": "ServiceWorkerManifest", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\", "BasePath": "/", - "RelativePath": "serviceworkers/my-service-worker.js", + "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Build", "AssetMode": "All", "AssetRole": "Primary", "AssetMergeBehavior": "", "AssetMergeSource": "", "RelatedAsset": "", - "AssetTraitName": "BlazorServiceWorker", - "AssetTraitValue": "ServiceWorkerJs", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "runtime", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "PreserveNewest", "CopyToPublishDirectory": "Never", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\wwwroot\\serviceworkers\\my-service-worker.js", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -9982,6 +9775,29 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, + { + "Identity": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\", + "BasePath": "/", + "RelativePath": "_framework/RazorClassLibrary.pdb", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "symbol", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, { "Identity": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", "SourceId": "RazorClassLibrary", @@ -10073,6 +9889,190 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.js.map", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js.map", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + }, + { + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" } ], "Endpoints": [ @@ -10206,8 +10206,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -10220,7 +10220,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -10243,8 +10243,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm", + "Route": "_framework/blazorwasm.pdb", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazorwasm.pdb", "Selectors": [], "ResponseHeaders": [ { @@ -10257,7 +10257,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -10280,14 +10280,110 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.wasm", + "Route": "Fake-License.txt.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "Fake-License.txt", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" + } + ] + }, + { + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10317,51 +10413,24 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10387,18 +10456,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10428,14 +10505,24 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10461,18 +10548,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10502,14 +10597,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10535,18 +10640,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10576,14 +10689,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10609,18 +10732,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.wasm", + "Route": "_framework/Microsoft.AspNetCore.Components.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10650,14 +10781,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Components.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10683,18 +10824,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10724,14 +10873,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10757,18 +10916,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm", + "Route": "_framework/Microsoft.CSharp.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10798,14 +10965,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.CSharp.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10831,25 +11008,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -10872,21 +11057,31 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -10905,18 +11100,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.wasm", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10946,14 +11149,24 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -10979,18 +11192,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11020,51 +11241,24 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.JSInterop.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11090,18 +11284,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11131,51 +11333,24 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/Microsoft.Win32.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11201,18 +11376,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11242,51 +11425,24 @@ ] }, { - "Route": "_framework/RazorClassLibrary.pdb", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/RazorClassLibrary.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11312,18 +11468,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.AppContext.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11353,14 +11517,24 @@ ] }, { - "Route": "_framework/System.Buffers.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11386,18 +11560,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.wasm", + "Route": "_framework/Microsoft.Extensions.Configuration.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11427,14 +11609,24 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Configuration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11460,18 +11652,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.wasm", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11501,14 +11701,24 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11534,18 +11744,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Collections.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.wasm", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11575,51 +11793,24 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11645,18 +11836,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.wasm", + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11686,51 +11885,24 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11756,18 +11928,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ComponentModel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.wasm", + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11797,14 +11977,24 @@ ] }, { - "Route": "_framework/System.Configuration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11830,18 +12020,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Console.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.wasm", + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11871,14 +12069,24 @@ ] }, { - "Route": "_framework/System.Core.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11904,18 +12112,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Data.Common.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.wasm", + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11945,14 +12161,24 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -11978,18 +12204,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Data.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.wasm", + "Route": "_framework/Microsoft.Extensions.Logging.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12019,14 +12253,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Logging.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12052,18 +12296,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.wasm", + "Route": "_framework/Microsoft.Extensions.Options.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12093,14 +12345,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Options.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12126,18 +12388,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.wasm", + "Route": "_framework/Microsoft.Extensions.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12167,14 +12437,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Extensions.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12200,18 +12480,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.wasm", + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12241,51 +12529,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Diagnostics.Tools.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12311,18 +12572,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.wasm", + "Route": "_framework/Microsoft.JSInterop.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12352,51 +12621,24 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/Microsoft.JSInterop.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Drawing.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12422,18 +12664,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Drawing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.wasm", + "Route": "_framework/Microsoft.VisualBasic.Core.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12463,14 +12713,24 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.VisualBasic.Core.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12496,18 +12756,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Formats.Asn1.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.wasm", + "Route": "_framework/Microsoft.VisualBasic.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12537,14 +12805,24 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Tar.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.VisualBasic.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12570,18 +12848,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.wasm", + "Route": "_framework/Microsoft.Win32.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12611,14 +12897,24 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Win32.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12644,18 +12940,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Globalization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.wasm", + "Route": "_framework/Microsoft.Win32.Registry.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12685,14 +12989,24 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.wasm", - "Selectors": [], + "Route": "_framework/Microsoft.Win32.Registry.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12718,25 +13032,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.wasm", + "Route": "_framework/RazorClassLibrary.pdb.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -12759,21 +13081,31 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.wasm", - "Selectors": [], + "Route": "_framework/RazorClassLibrary.pdb", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -12792,18 +13124,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Compression.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.wasm", + "Route": "_framework/RazorClassLibrary.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12833,51 +13173,24 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/RazorClassLibrary.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12903,18 +13216,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.wasm", + "Route": "_framework/System.AppContext.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -12944,51 +13265,24 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.AppContext.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.IO.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13014,18 +13308,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.wasm", + "Route": "_framework/System.Buffers.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13055,14 +13357,24 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.wasm", - "Selectors": [], + "Route": "_framework/System.Buffers.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13088,18 +13400,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Pipelines.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.wasm", + "Route": "_framework/System.Collections.Concurrent.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13129,14 +13449,24 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Concurrent.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13162,18 +13492,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.Pipes.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.wasm", + "Route": "_framework/System.Collections.Immutable.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13203,14 +13541,24 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Immutable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13236,18 +13584,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.IO.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.wasm", + "Route": "_framework/System.Collections.NonGeneric.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13277,14 +13633,24 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.AsyncEnumerable.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.NonGeneric.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13310,18 +13676,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Linq.Expressions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.wasm", + "Route": "_framework/System.Collections.Specialized.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13351,14 +13725,24 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.Specialized.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13384,18 +13768,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Linq.Queryable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.wasm", + "Route": "_framework/System.Collections.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13425,14 +13817,24 @@ ] }, { - "Route": "_framework/System.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.wasm", - "Selectors": [], + "Route": "_framework/System.Collections.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13458,18 +13860,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Memory.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.wasm", + "Route": "_framework/System.ComponentModel.Annotations.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13499,51 +13909,24 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.Annotations.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.Http.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13569,18 +13952,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.HttpListener.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.wasm", + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13610,51 +14001,24 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.NameResolution.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13680,18 +14044,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.wasm", + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13721,51 +14093,24 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13791,18 +14136,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.Quic.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.wasm", + "Route": "_framework/System.ComponentModel.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13832,14 +14185,24 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13865,18 +14228,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.Security.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.wasm", + "Route": "_framework/System.ComponentModel.TypeConverter.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13906,14 +14277,24 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServerSentEvents.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.TypeConverter.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13939,18 +14320,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.wasm", + "Route": "_framework/System.ComponentModel.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -13980,14 +14369,24 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.wasm", - "Selectors": [], + "Route": "_framework/System.ComponentModel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14013,18 +14412,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.WebClient.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.wasm", + "Route": "_framework/System.Configuration.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14054,51 +14461,24 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Configuration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.WebProxy.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14124,18 +14504,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.wasm", + "Route": "_framework/System.Console.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14165,51 +14553,24 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Console.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Net.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14235,18 +14596,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.wasm", + "Route": "_framework/System.Core.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14276,14 +14645,24 @@ ] }, { - "Route": "_framework/System.Numerics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.wasm", - "Selectors": [], + "Route": "_framework/System.Core.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14309,18 +14688,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ObjectModel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.wasm", + "Route": "_framework/System.Data.Common.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14350,14 +14737,24 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.wasm", - "Selectors": [], + "Route": "_framework/System.Data.Common.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14383,18 +14780,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.wasm", + "Route": "_framework/System.Data.DataSetExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14424,14 +14829,24 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.wasm", - "Selectors": [], + "Route": "_framework/System.Data.DataSetExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14457,18 +14872,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.wasm", + "Route": "_framework/System.Data.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14498,14 +14921,24 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.wasm", - "Selectors": [], + "Route": "_framework/System.Data.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14531,18 +14964,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.wasm", + "Route": "_framework/System.Diagnostics.Contracts.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14572,14 +15013,24 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Contracts.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14605,18 +15056,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.wasm", + "Route": "_framework/System.Diagnostics.Debug.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14646,14 +15105,24 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Debug.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14679,18 +15148,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.wasm", + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14720,51 +15197,24 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Reflection.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14790,18 +15240,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.wasm", + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14831,51 +15289,24 @@ ] }, { - "Route": "_framework/System.Reflection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Resources.Reader.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14901,18 +15332,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.wasm", + "Route": "_framework/System.Diagnostics.Process.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -14942,51 +15381,24 @@ ] }, { - "Route": "_framework/System.Resources.Writer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.Process.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15012,18 +15424,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.wasm", + "Route": "_framework/System.Diagnostics.StackTrace.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15053,14 +15473,24 @@ ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.StackTrace.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15086,18 +15516,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Handles.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.wasm", + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15127,14 +15565,24 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15160,18 +15608,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm", + "Route": "_framework/System.Diagnostics.Tools.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15201,14 +15657,24 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.wasm", - "Selectors": [], + "Route": "_framework/System.Diagnostics.Tools.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15234,18 +15700,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.wasm", + "Route": "_framework/System.Diagnostics.TraceSource.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15275,51 +15749,24 @@ ] }, { - "Route": "_framework/System.Runtime.Loader.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.TraceSource.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.Numerics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15345,18 +15792,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.wasm", + "Route": "_framework/System.Diagnostics.Tracing.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15386,51 +15841,24 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Diagnostics.Tracing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15456,18 +15884,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.wasm", + "Route": "_framework/System.Drawing.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15497,14 +15933,24 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.wasm", - "Selectors": [], + "Route": "_framework/System.Drawing.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15530,18 +15976,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.wasm", + "Route": "_framework/System.Drawing.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15571,14 +16025,24 @@ ] }, { - "Route": "_framework/System.Security.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.wasm", - "Selectors": [], + "Route": "_framework/System.Drawing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15604,18 +16068,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Claims.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.wasm", + "Route": "_framework/System.Dynamic.Runtime.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15645,14 +16117,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.wasm", - "Selectors": [], + "Route": "_framework/System.Dynamic.Runtime.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15678,18 +16160,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.wasm", + "Route": "_framework/System.Formats.Asn1.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15719,14 +16209,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.wasm", - "Selectors": [], + "Route": "_framework/System.Formats.Asn1.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15752,18 +16252,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.wasm", + "Route": "_framework/System.Formats.Tar.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15793,14 +16301,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.wasm", - "Selectors": [], + "Route": "_framework/System.Formats.Tar.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15826,18 +16344,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.wasm", + "Route": "_framework/System.Globalization.Calendars.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15867,14 +16393,24 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.wasm", - "Selectors": [], + "Route": "_framework/System.Globalization.Calendars.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15900,18 +16436,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.wasm", + "Route": "_framework/System.Globalization.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -15941,51 +16485,24 @@ ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Globalization.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Security.Principal.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16011,18 +16528,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.SecureString.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.wasm", + "Route": "_framework/System.Globalization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16052,51 +16577,24 @@ ] }, { - "Route": "_framework/System.Security.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Globalization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.ServiceModel.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16122,18 +16620,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceProcess.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.wasm", + "Route": "_framework/System.IO.Compression.Brotli.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16163,51 +16669,24 @@ ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.Compression.Brotli.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Text.Encoding.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16233,18 +16712,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.wasm", + "Route": "_framework/System.IO.Compression.FileSystem.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16274,14 +16761,24 @@ ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Compression.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16307,18 +16804,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.wasm", + "Route": "_framework/System.IO.Compression.ZipFile.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16348,14 +16853,24 @@ ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Compression.ZipFile.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16381,18 +16896,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.AccessControl.wasm", + "Route": "_framework/System.IO.Compression.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16422,14 +16945,24 @@ ] }, { - "Route": "_framework/System.Threading.Channels.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Compression.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16455,18 +16988,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.wasm", + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16496,51 +17037,24 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16566,18 +17080,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.wasm", + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16607,51 +17129,24 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/System.Threading.Thread.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16677,18 +17172,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.wasm", + "Route": "_framework/System.IO.FileSystem.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16718,14 +17221,24 @@ ] }, { - "Route": "_framework/System.Threading.Timer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16751,18 +17264,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.wasm", + "Route": "_framework/System.IO.FileSystem.Watcher.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16792,14 +17313,24 @@ ] }, { - "Route": "_framework/System.Transactions.Local.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.Watcher.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16825,18 +17356,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.wasm", + "Route": "_framework/System.IO.FileSystem.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16866,14 +17405,24 @@ ] }, { - "Route": "_framework/System.ValueTuple.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.wasm", - "Selectors": [], + "Route": "_framework/System.IO.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16899,18 +17448,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.wasm", + "Route": "_framework/System.IO.IsolatedStorage.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16940,14 +17497,24 @@ ] }, { - "Route": "_framework/System.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.wasm", - "Selectors": [], + "Route": "_framework/System.IO.IsolatedStorage.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -16973,18 +17540,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Windows.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.wasm", + "Route": "_framework/System.IO.MemoryMappedFiles.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17014,14 +17589,24 @@ ] }, { - "Route": "_framework/System.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.wasm", - "Selectors": [], + "Route": "_framework/System.IO.MemoryMappedFiles.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17047,18 +17632,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.wasm", + "Route": "_framework/System.IO.Pipelines.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17088,14 +17681,24 @@ ] }, { - "Route": "_framework/System.Xml.Serialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipelines.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17121,18 +17724,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.wasm", + "Route": "_framework/System.IO.Pipes.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17162,14 +17773,24 @@ ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipes.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17195,18 +17816,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.wasm", + "Route": "_framework/System.IO.Pipes.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17236,14 +17865,24 @@ ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.wasm", - "Selectors": [], + "Route": "_framework/System.IO.Pipes.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17269,18 +17908,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.wasm", + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17310,14 +17957,24 @@ ] }, { - "Route": "_framework/System.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.wasm", - "Selectors": [], + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17343,18 +18000,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.wasm", + "Route": "_framework/System.IO.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17384,14 +18049,24 @@ ] }, { - "Route": "_framework/WindowsBase.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.wasm", - "Selectors": [], + "Route": "_framework/System.IO.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17417,25 +18092,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", + "Route": "_framework/System.Linq.AsyncEnumerable.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17458,51 +18141,24 @@ ] }, { - "Route": "_framework/blazorwasm.pdb", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Linq.AsyncEnumerable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/blazorwasm.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.wasm", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17528,25 +18184,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js", + "Route": "_framework/System.Linq.Expressions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17562,30 +18226,6 @@ } ], "EndpointProperties": [ - { - "Name": "PreloadAs", - "Value": "script" - }, - { - "Name": "PreloadCrossorigin", - "Value": "anonymous" - }, - { - "Name": "PreloadGroup", - "Value": "webassembly" - }, - { - "Name": "PreloadOrder", - "Value": "1" - }, - { - "Name": "PreloadPriority", - "Value": "high" - }, - { - "Name": "PreloadRel", - "Value": "preload" - }, { "Name": "integrity", "Value": "__integrity__" @@ -17593,58 +18233,31 @@ ] }, { - "Route": "_framework/dotnet.js.map", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Linq.Expressions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17663,18 +18276,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "Route": "_framework/System.Linq.Parallel.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17704,58 +18325,31 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Linq.Parallel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/dotnet.runtime.js.map", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js.map", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17774,25 +18368,33 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "Route": "_framework/System.Linq.Queryable.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17815,58 +18417,31 @@ ] }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, + "Route": "_framework/System.Linq.Queryable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Selectors": [ { - "Name": "Vary", - "Value": "Accept-Encoding" + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" } ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] - }, - { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -17885,18 +18460,26 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "_framework/mscorlib.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.wasm", + "Route": "_framework/System.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17926,14 +18509,24 @@ ] }, { - "Route": "_framework/netstandard.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.wasm", - "Selectors": [], + "Route": "_framework/System.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -17959,12 +18552,16 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "Fake-License.txt.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Route": "_framework/System.Memory.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -17981,7 +18578,7 @@ }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18004,8 +18601,8 @@ ] }, { - "Route": "Fake-License.txt", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", + "Route": "_framework/System.Memory.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18028,7 +18625,7 @@ }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18055,8 +18652,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Route": "_framework/System.Net.Http.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18096,8 +18693,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", + "Route": "_framework/System.Net.Http.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18147,8 +18744,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Route": "_framework/System.Net.Http.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18188,8 +18785,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.wasm.gz", + "Route": "_framework/System.Net.Http.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18239,8 +18836,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18280,8 +18877,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18331,8 +18928,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18372,8 +18969,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.wasm.gz", + "Route": "_framework/System.Net.Mail.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18423,8 +19020,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Route": "_framework/System.Net.NameResolution.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18464,8 +19061,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Components.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.wasm.gz", + "Route": "_framework/System.Net.NameResolution.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18515,8 +19112,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18556,8 +19153,8 @@ ] }, { - "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18607,8 +19204,8 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18648,8 +19245,8 @@ ] }, { - "Route": "_framework/Microsoft.CSharp.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.wasm.gz", + "Route": "_framework/System.Net.Ping.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18699,8 +19296,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Route": "_framework/System.Net.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18717,7 +19314,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18740,8 +19337,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js.gz", + "Route": "_framework/System.Net.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18764,7 +19361,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -18791,8 +19388,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18832,8 +19429,8 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18883,8 +19480,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Route": "_framework/System.Net.Requests.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -18924,8 +19521,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.wasm.gz", + "Route": "_framework/System.Net.Requests.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -18975,8 +19572,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Route": "_framework/System.Net.Security.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19016,8 +19613,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.wasm.gz", + "Route": "_framework/System.Net.Security.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19067,8 +19664,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19108,8 +19705,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.wasm.gz", + "Route": "_framework/System.Net.ServerSentEvents.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19159,8 +19756,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19200,8 +19797,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19251,8 +19848,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19292,8 +19889,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Configuration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.wasm.gz", + "Route": "_framework/System.Net.Sockets.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19343,8 +19940,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19384,8 +19981,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19435,8 +20032,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19476,8 +20073,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.wasm.gz", + "Route": "_framework/System.Net.WebHeaderCollection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19527,8 +20124,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19568,8 +20165,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19619,8 +20216,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19660,8 +20257,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.wasm.gz", + "Route": "_framework/System.Net.WebSockets.Client.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19711,8 +20308,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19752,8 +20349,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19803,8 +20400,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Route": "_framework/System.Net.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19844,8 +20441,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.wasm.gz", + "Route": "_framework/System.Net.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19895,8 +20492,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -19936,8 +20533,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Logging.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -19987,8 +20584,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Route": "_framework/System.Numerics.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20028,8 +20625,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Options.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz", + "Route": "_framework/System.Numerics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20079,8 +20676,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20120,8 +20717,8 @@ ] }, { - "Route": "_framework/Microsoft.Extensions.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz", + "Route": "_framework/System.ObjectModel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20171,8 +20768,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20212,8 +20809,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20263,8 +20860,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20304,8 +20901,8 @@ ] }, { - "Route": "_framework/Microsoft.JSInterop.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz", + "Route": "_framework/System.Private.DataContractSerialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20355,8 +20952,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20396,8 +20993,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.Core.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz", + "Route": "_framework/System.Private.Uri.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20447,8 +21044,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20488,8 +21085,8 @@ ] }, { - "Route": "_framework/Microsoft.VisualBasic.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.wasm.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20539,8 +21136,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20580,8 +21177,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.wasm.gz", + "Route": "_framework/System.Private.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20631,8 +21228,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20672,8 +21269,8 @@ ] }, { - "Route": "_framework/Microsoft.Win32.Registry.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20723,8 +21320,8 @@ ] }, { - "Route": "_framework/RazorClassLibrary.pdb.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20741,7 +21338,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -20764,8 +21361,8 @@ ] }, { - "Route": "_framework/RazorClassLibrary.pdb", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20788,7 +21385,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -20815,8 +21412,8 @@ ] }, { - "Route": "_framework/RazorClassLibrary.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20856,8 +21453,8 @@ ] }, { - "Route": "_framework/RazorClassLibrary.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20907,8 +21504,8 @@ ] }, { - "Route": "_framework/System.AppContext.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Route": "_framework/System.Reflection.Emit.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -20948,8 +21545,8 @@ ] }, { - "Route": "_framework/System.AppContext.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.wasm.gz", + "Route": "_framework/System.Reflection.Emit.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -20999,8 +21596,8 @@ ] }, { - "Route": "_framework/System.Buffers.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21040,8 +21637,8 @@ ] }, { - "Route": "_framework/System.Buffers.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21091,8 +21688,8 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21132,8 +21729,8 @@ ] }, { - "Route": "_framework/System.Collections.Concurrent.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.wasm.gz", + "Route": "_framework/System.Reflection.Metadata.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21183,8 +21780,8 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Route": "_framework/System.Reflection.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21224,8 +21821,8 @@ ] }, { - "Route": "_framework/System.Collections.Immutable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.wasm.gz", + "Route": "_framework/System.Reflection.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21275,8 +21872,8 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21316,8 +21913,8 @@ ] }, { - "Route": "_framework/System.Collections.NonGeneric.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21367,8 +21964,8 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Route": "_framework/System.Reflection.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21408,8 +22005,8 @@ ] }, { - "Route": "_framework/System.Collections.Specialized.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.wasm.gz", + "Route": "_framework/System.Reflection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21459,8 +22056,8 @@ ] }, { - "Route": "_framework/System.Collections.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21500,8 +22097,8 @@ ] }, { - "Route": "_framework/System.Collections.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.wasm.gz", + "Route": "_framework/System.Resources.Reader.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21551,8 +22148,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21592,8 +22189,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Annotations.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21643,8 +22240,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21684,8 +22281,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.wasm.gz", + "Route": "_framework/System.Resources.Writer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21735,8 +22332,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21776,8 +22373,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21827,8 +22424,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21868,8 +22465,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -21919,8 +22516,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -21960,8 +22557,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.TypeConverter.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.wasm.gz", + "Route": "_framework/System.Runtime.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22011,8 +22608,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22052,8 +22649,8 @@ ] }, { - "Route": "_framework/System.ComponentModel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22103,8 +22700,8 @@ ] }, { - "Route": "_framework/System.Configuration.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22144,8 +22741,8 @@ ] }, { - "Route": "_framework/System.Configuration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22195,8 +22792,8 @@ ] }, { - "Route": "_framework/System.Console.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22236,8 +22833,8 @@ ] }, { - "Route": "_framework/System.Console.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22287,8 +22884,8 @@ ] }, { - "Route": "_framework/System.Core.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22328,8 +22925,8 @@ ] }, { - "Route": "_framework/System.Core.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22379,8 +22976,8 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22420,8 +23017,8 @@ ] }, { - "Route": "_framework/System.Data.Common.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22471,8 +23068,8 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22512,8 +23109,8 @@ ] }, { - "Route": "_framework/System.Data.DataSetExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.wasm.gz", + "Route": "_framework/System.Runtime.Loader.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22563,8 +23160,8 @@ ] }, { - "Route": "_framework/System.Data.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22604,8 +23201,8 @@ ] }, { - "Route": "_framework/System.Data.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22655,8 +23252,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22696,8 +23293,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Contracts.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22747,8 +23344,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22788,8 +23385,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Debug.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22839,8 +23436,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22880,8 +23477,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -22931,8 +23528,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -22972,8 +23569,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23023,8 +23620,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23064,8 +23661,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Process.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23115,8 +23712,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Route": "_framework/System.Runtime.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23156,8 +23753,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.StackTrace.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.wasm.gz", + "Route": "_framework/System.Runtime.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23207,8 +23804,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23248,8 +23845,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23299,8 +23896,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23340,8 +23937,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tools.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.wasm.gz", + "Route": "_framework/System.Security.Claims.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23391,8 +23988,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23432,8 +24029,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.TraceSource.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23483,8 +24080,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23524,8 +24121,8 @@ ] }, { - "Route": "_framework/System.Diagnostics.Tracing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23575,8 +24172,8 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23616,8 +24213,8 @@ ] }, { - "Route": "_framework/System.Drawing.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Csp.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23667,8 +24264,8 @@ ] }, { - "Route": "_framework/System.Drawing.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23708,8 +24305,8 @@ ] }, { - "Route": "_framework/System.Drawing.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23759,8 +24356,8 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23800,8 +24397,8 @@ ] }, { - "Route": "_framework/System.Dynamic.Runtime.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.wasm.gz", + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23851,8 +24448,8 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23892,8 +24489,8 @@ ] }, { - "Route": "_framework/System.Formats.Asn1.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -23943,8 +24540,8 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -23984,8 +24581,8 @@ ] }, { - "Route": "_framework/System.Formats.Tar.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.wasm.gz", + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24035,8 +24632,8 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24076,8 +24673,8 @@ ] }, { - "Route": "_framework/System.Globalization.Calendars.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24127,8 +24724,8 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24168,8 +24765,8 @@ ] }, { - "Route": "_framework/System.Globalization.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.wasm.gz", + "Route": "_framework/System.Security.Principal.Windows.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24219,8 +24816,8 @@ ] }, { - "Route": "_framework/System.Globalization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Route": "_framework/System.Security.Principal.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24260,8 +24857,8 @@ ] }, { - "Route": "_framework/System.Globalization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.wasm.gz", + "Route": "_framework/System.Security.Principal.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24311,8 +24908,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24352,8 +24949,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.Brotli.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24403,8 +25000,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Route": "_framework/System.Security.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24444,8 +25041,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.wasm.gz", + "Route": "_framework/System.Security.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24495,8 +25092,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24536,8 +25133,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.ZipFile.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.wasm.gz", + "Route": "_framework/System.ServiceModel.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24587,8 +25184,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24628,8 +25225,8 @@ ] }, { - "Route": "_framework/System.IO.Compression.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24679,8 +25276,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24720,8 +25317,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.wasm.gz", + "Route": "_framework/System.Text.Encoding.CodePages.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24771,8 +25368,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24812,8 +25409,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.wasm.gz", + "Route": "_framework/System.Text.Encoding.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24863,8 +25460,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24904,8 +25501,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.wasm.gz", + "Route": "_framework/System.Text.Encoding.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -24955,8 +25552,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -24996,8 +25593,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.Watcher.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.wasm.gz", + "Route": "_framework/System.Text.Encodings.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25047,8 +25644,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Route": "_framework/System.Text.Json.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25088,8 +25685,8 @@ ] }, { - "Route": "_framework/System.IO.FileSystem.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.wasm.gz", + "Route": "_framework/System.Text.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25139,8 +25736,8 @@ ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Route": "_framework/System.Text.RegularExpressions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25180,8 +25777,8 @@ ] }, { - "Route": "_framework/System.IO.IsolatedStorage.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.wasm.gz", + "Route": "_framework/System.Text.RegularExpressions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25231,8 +25828,8 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25272,8 +25869,8 @@ ] }, { - "Route": "_framework/System.IO.MemoryMappedFiles.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25323,8 +25920,8 @@ ] }, { - "Route": "_framework/System.IO.Pipelines.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Route": "_framework/System.Threading.Channels.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25364,8 +25961,8 @@ ] }, { - "Route": "_framework/System.IO.Pipelines.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.wasm.gz", + "Route": "_framework/System.Threading.Channels.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25415,8 +26012,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Route": "_framework/System.Threading.Overlapped.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25456,8 +26053,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.wasm.gz", + "Route": "_framework/System.Threading.Overlapped.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25507,8 +26104,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25548,8 +26145,8 @@ ] }, { - "Route": "_framework/System.IO.Pipes.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25599,8 +26196,8 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25640,8 +26237,8 @@ ] }, { - "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25691,8 +26288,8 @@ ] }, { - "Route": "_framework/System.IO.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25732,8 +26329,8 @@ ] }, { - "Route": "_framework/System.IO.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.wasm.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25783,8 +26380,8 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25824,8 +26421,8 @@ ] }, { - "Route": "_framework/System.Linq.AsyncEnumerable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.AsyncEnumerable.wasm.gz", + "Route": "_framework/System.Threading.Tasks.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25875,8 +26472,8 @@ ] }, { - "Route": "_framework/System.Linq.Expressions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Route": "_framework/System.Threading.Thread.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -25916,8 +26513,8 @@ ] }, { - "Route": "_framework/System.Linq.Expressions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.wasm.gz", + "Route": "_framework/System.Threading.Thread.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -25967,8 +26564,8 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26008,8 +26605,8 @@ ] }, { - "Route": "_framework/System.Linq.Parallel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.wasm.gz", + "Route": "_framework/System.Threading.ThreadPool.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26059,8 +26656,8 @@ ] }, { - "Route": "_framework/System.Linq.Queryable.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26100,8 +26697,8 @@ ] }, { - "Route": "_framework/System.Linq.Queryable.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26151,8 +26748,8 @@ ] }, { - "Route": "_framework/System.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Route": "_framework/System.Threading.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26192,8 +26789,8 @@ ] }, { - "Route": "_framework/System.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.wasm.gz", + "Route": "_framework/System.Threading.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26243,8 +26840,8 @@ ] }, { - "Route": "_framework/System.Memory.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Route": "_framework/System.Transactions.Local.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26284,8 +26881,8 @@ ] }, { - "Route": "_framework/System.Memory.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.wasm.gz", + "Route": "_framework/System.Transactions.Local.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26335,8 +26932,8 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Route": "_framework/System.Transactions.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26376,8 +26973,8 @@ ] }, { - "Route": "_framework/System.Net.Http.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.wasm.gz", + "Route": "_framework/System.Transactions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26427,8 +27024,8 @@ ] }, { - "Route": "_framework/System.Net.Http.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Route": "_framework/System.ValueTuple.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26468,8 +27065,8 @@ ] }, { - "Route": "_framework/System.Net.Http.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.wasm.gz", + "Route": "_framework/System.ValueTuple.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26519,8 +27116,8 @@ ] }, { - "Route": "_framework/System.Net.HttpListener.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Route": "_framework/System.Web.HttpUtility.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26560,8 +27157,8 @@ ] }, { - "Route": "_framework/System.Net.HttpListener.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.wasm.gz", + "Route": "_framework/System.Web.HttpUtility.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26611,8 +27208,8 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Route": "_framework/System.Web.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26652,8 +27249,8 @@ ] }, { - "Route": "_framework/System.Net.Mail.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.wasm.gz", + "Route": "_framework/System.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26703,8 +27300,8 @@ ] }, { - "Route": "_framework/System.Net.NameResolution.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Route": "_framework/System.Windows.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26744,8 +27341,8 @@ ] }, { - "Route": "_framework/System.Net.NameResolution.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.wasm.gz", + "Route": "_framework/System.Windows.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26795,8 +27392,8 @@ ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Route": "_framework/System.Xml.Linq.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26836,8 +27433,8 @@ ] }, { - "Route": "_framework/System.Net.NetworkInformation.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.wasm.gz", + "Route": "_framework/System.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26887,8 +27484,8 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -26928,8 +27525,8 @@ ] }, { - "Route": "_framework/System.Net.Ping.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.wasm.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -26979,8 +27576,8 @@ ] }, { - "Route": "_framework/System.Net.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27020,8 +27617,8 @@ ] }, { - "Route": "_framework/System.Net.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.wasm.gz", + "Route": "_framework/System.Xml.Serialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27071,8 +27668,8 @@ ] }, { - "Route": "_framework/System.Net.Quic.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Route": "_framework/System.Xml.XDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27112,8 +27709,8 @@ ] }, { - "Route": "_framework/System.Net.Quic.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.wasm.gz", + "Route": "_framework/System.Xml.XDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27163,8 +27760,8 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27204,8 +27801,8 @@ ] }, { - "Route": "_framework/System.Net.Requests.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.wasm.gz", + "Route": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27255,8 +27852,8 @@ ] }, { - "Route": "_framework/System.Net.Security.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27296,8 +27893,8 @@ ] }, { - "Route": "_framework/System.Net.Security.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27347,8 +27944,8 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27388,8 +27985,8 @@ ] }, { - "Route": "_framework/System.Net.ServerSentEvents.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServerSentEvents.wasm.gz", + "Route": "_framework/System.Xml.XmlDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27439,8 +28036,8 @@ ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27480,8 +28077,8 @@ ] }, { - "Route": "_framework/System.Net.ServicePoint.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.wasm.gz", + "Route": "_framework/System.Xml.XmlSerializer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27531,8 +28128,8 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Route": "_framework/System.Xml.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27572,8 +28169,8 @@ ] }, { - "Route": "_framework/System.Net.Sockets.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.wasm.gz", + "Route": "_framework/System.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27623,8 +28220,8 @@ ] }, { - "Route": "_framework/System.Net.WebClient.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Route": "_framework/System.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27664,8 +28261,8 @@ ] }, { - "Route": "_framework/System.Net.WebClient.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.wasm.gz", + "Route": "_framework/System.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27715,8 +28312,8 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Route": "_framework/WindowsBase.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27756,8 +28353,8 @@ ] }, { - "Route": "_framework/System.Net.WebHeaderCollection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.wasm.gz", + "Route": "_framework/WindowsBase.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27807,8 +28404,8 @@ ] }, { - "Route": "_framework/System.Net.WebProxy.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Route": "_framework/blazor.webassembly.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27825,7 +28422,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27848,8 +28445,8 @@ ] }, { - "Route": "_framework/System.Net.WebProxy.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.wasm.gz", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27872,7 +28469,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -27899,8 +28496,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Route": "_framework/blazorwasm.pdb.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "Selectors": [], "ResponseHeaders": [ { @@ -27917,7 +28514,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27940,8 +28537,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.Client.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.wasm.gz", + "Route": "_framework/blazorwasm.pdb", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -27964,7 +28561,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -27991,8 +28588,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Route": "_framework/blazorwasm.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28032,8 +28629,8 @@ ] }, { - "Route": "_framework/System.Net.WebSockets.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.wasm.gz", + "Route": "_framework/blazorwasm.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28083,8 +28680,8 @@ ] }, { - "Route": "_framework/System.Net.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Route": "_framework/dotnet.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28101,7 +28698,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28124,8 +28721,8 @@ ] }, { - "Route": "_framework/System.Net.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.wasm.gz", + "Route": "_framework/dotnet.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28148,7 +28745,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28164,6 +28761,30 @@ } ], "EndpointProperties": [ + { + "Name": "PreloadAs", + "Value": "script" + }, + { + "Name": "PreloadCrossorigin", + "Value": "anonymous" + }, + { + "Name": "PreloadGroup", + "Value": "webassembly" + }, + { + "Name": "PreloadOrder", + "Value": "1" + }, + { + "Name": "PreloadPriority", + "Value": "high" + }, + { + "Name": "PreloadRel", + "Value": "preload" + }, { "Name": "integrity", "Value": "__integrity__" @@ -28175,8 +28796,8 @@ ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Route": "_framework/dotnet.js.map.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28193,7 +28814,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -28216,8 +28837,8 @@ ] }, { - "Route": "_framework/System.Numerics.Vectors.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.wasm.gz", + "Route": "_framework/dotnet.js.map", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28240,7 +28861,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -28267,8 +28888,8 @@ ] }, { - "Route": "_framework/System.Numerics.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Route": "_framework/dotnet.native.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28285,7 +28906,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28308,8 +28929,8 @@ ] }, { - "Route": "_framework/System.Numerics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.wasm.gz", + "Route": "_framework/dotnet.native.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28332,7 +28953,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28359,8 +28980,8 @@ ] }, { - "Route": "_framework/System.ObjectModel.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Route": "_framework/dotnet.native.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28400,8 +29021,8 @@ ] }, { - "Route": "_framework/System.ObjectModel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.wasm.gz", + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28451,8 +29072,8 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Route": "_framework/dotnet.runtime.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28469,7 +29090,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28492,8 +29113,8 @@ ] }, { - "Route": "_framework/System.Private.CoreLib.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.wasm.gz", + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28516,7 +29137,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -28543,8 +29164,8 @@ ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Route": "_framework/dotnet.runtime.js.map.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28561,7 +29182,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -28584,8 +29205,8 @@ ] }, { - "Route": "_framework/System.Private.DataContractSerialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.wasm.gz", + "Route": "_framework/dotnet.runtime.js.map", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28608,7 +29229,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/plain" }, { "Name": "ETag", @@ -28635,8 +29256,8 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Route": "_framework/icudt_CJK.dat.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28653,7 +29274,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28676,8 +29297,8 @@ ] }, { - "Route": "_framework/System.Private.Uri.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.wasm.gz", + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28700,7 +29321,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28727,8 +29348,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Route": "_framework/icudt_EFIGS.dat.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28745,7 +29366,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28768,8 +29389,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.wasm.gz", + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28792,7 +29413,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28819,8 +29440,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Route": "_framework/icudt_no_CJK.dat.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28837,7 +29458,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28860,8 +29481,8 @@ ] }, { - "Route": "_framework/System.Private.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.wasm.gz", + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -28884,7 +29505,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -28911,8 +29532,8 @@ ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Route": "_framework/mscorlib.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -28952,8 +29573,8 @@ ] }, { - "Route": "_framework/System.Reflection.DispatchProxy.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.wasm.gz", + "Route": "_framework/mscorlib.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29003,8 +29624,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Route": "_framework/netstandard.wasm.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29044,8 +29665,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.wasm.gz", + "Route": "_framework/netstandard.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29095,8 +29716,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Route": "css/app.css.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29113,7 +29734,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -29136,8 +29757,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.wasm.gz", + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29160,7 +29781,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/css" }, { "Name": "ETag", @@ -29187,8 +29808,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Route": "custom-service-worker-assets.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29205,7 +29826,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29228,8 +29849,8 @@ ] }, { - "Route": "_framework/System.Reflection.Emit.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.wasm.gz", + "Route": "custom-service-worker-assets.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29252,7 +29873,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29279,8 +29900,8 @@ ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Route": "index.html.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29297,7 +29918,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/html" }, { "Name": "ETag", @@ -29320,8 +29941,8 @@ ] }, { - "Route": "_framework/System.Reflection.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.wasm.gz", + "Route": "index.html", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29344,7 +29965,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/html" }, { "Name": "ETag", @@ -29371,8 +29992,8 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Route": "serviceworkers/my-service-worker.js.gz", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", "Selectors": [], "ResponseHeaders": [ { @@ -29389,7 +30010,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29412,8 +30033,8 @@ ] }, { - "Route": "_framework/System.Reflection.Metadata.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.wasm.gz", + "Route": "serviceworkers/my-service-worker.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -29436,7 +30057,7 @@ }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29463,25 +30084,21 @@ ] }, { - "Route": "_framework/System.Reflection.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", + "Route": "_framework/dotnet.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\dotnet.js", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29497,6 +30114,30 @@ } ], "EndpointProperties": [ + { + "Name": "PreloadAs", + "Value": "script" + }, + { + "Name": "PreloadCrossorigin", + "Value": "anonymous" + }, + { + "Name": "PreloadGroup", + "Value": "webassembly" + }, + { + "Name": "PreloadOrder", + "Value": "1" + }, + { + "Name": "PreloadPriority", + "Value": "high" + }, + { + "Name": "PreloadRel", + "Value": "preload" + }, { "Name": "integrity", "Value": "__integrity__" @@ -29504,31 +30145,21 @@ ] }, { - "Route": "_framework/System.Reflection.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29547,33 +30178,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", + "Route": "custom-service-worker-assets.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29596,76 +30219,21 @@ ] }, { - "Route": "_framework/System.Reflection.TypeExtensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" - } - ] - }, - { - "Route": "_framework/System.Reflection.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", + "Route": "serviceworkers/my-service-worker.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/wasm" + "Value": "text/javascript" }, { "Name": "ETag", @@ -29688,24 +30256,14 @@ ] }, { - "Route": "_framework/System.Reflection.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Authorization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Authorization.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29731,26 +30289,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.Reader.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Forms.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29780,24 +30330,14 @@ ] }, { - "Route": "_framework/System.Resources.Reader.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Components.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29823,26 +30363,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29872,24 +30404,14 @@ ] }, { - "Route": "_framework/System.Resources.ResourceManager.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.AspNetCore.Components.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Components.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29915,26 +30437,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Resources.Writer.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", + "Route": "_framework/Microsoft.AspNetCore.Metadata.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.AspNetCore.Metadata.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -29964,24 +30478,14 @@ ] }, { - "Route": "_framework/System.Resources.Writer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.CSharp.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.CSharp.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30007,26 +30511,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", + "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30056,24 +30552,14 @@ ] }, { - "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Abstractions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30099,26 +30585,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Binder.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30148,24 +30626,14 @@ ] }, { - "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.FileExtensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30191,26 +30659,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Configuration.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30240,24 +30700,14 @@ ] }, { - "Route": "_framework/System.Runtime.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Configuration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Configuration.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30283,26 +30733,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Handles.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", + "Route": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30332,24 +30774,14 @@ ] }, { - "Route": "_framework/System.Runtime.Handles.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.DependencyInjection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.DependencyInjection.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30375,26 +30807,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", + "Route": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30424,24 +30848,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileProviders.Physical.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30467,26 +30881,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", + "Route": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.FileSystemGlobbing.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30516,24 +30922,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.Abstractions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30559,26 +30955,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Logging.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Logging.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30608,24 +30996,14 @@ ] }, { - "Route": "_framework/System.Runtime.InteropServices.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/Microsoft.Extensions.Options.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Options.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30651,26 +31029,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", + "Route": "_framework/Microsoft.Extensions.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30700,24 +31070,51 @@ ] }, { - "Route": "_framework/System.Runtime.Intrinsics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.WebAssembly.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.JSInterop.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.JSInterop.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30743,26 +31140,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Loader.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", + "Route": "_framework/Microsoft.VisualBasic.Core.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.Core.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30792,24 +31181,51 @@ ] }, { - "Route": "_framework/System.Runtime.Loader.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.wasm.gz", - "Selectors": [ + "Route": "_framework/Microsoft.VisualBasic.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.VisualBasic.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/Microsoft.Win32.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30835,26 +31251,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Numerics.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", + "Route": "_framework/Microsoft.Win32.Registry.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Win32.Registry.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30884,24 +31292,51 @@ ] }, { - "Route": "_framework/System.Runtime.Numerics.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.wasm.gz", - "Selectors": [ + "Route": "_framework/RazorClassLibrary.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\RazorClassLibrary.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.AppContext.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.AppContext.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30927,26 +31362,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", + "Route": "_framework/System.Buffers.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Buffers.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -30976,24 +31403,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Collections.Concurrent.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Concurrent.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31019,26 +31436,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", + "Route": "_framework/System.Collections.Immutable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Immutable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31068,24 +31477,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Collections.NonGeneric.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.NonGeneric.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31111,26 +31510,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", + "Route": "_framework/System.Collections.Specialized.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.Specialized.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31160,24 +31551,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Collections.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Collections.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31203,26 +31584,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", + "Route": "_framework/System.ComponentModel.Annotations.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Annotations.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31252,24 +31625,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ComponentModel.DataAnnotations.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.DataAnnotations.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31295,26 +31658,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", + "Route": "_framework/System.ComponentModel.EventBasedAsync.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.EventBasedAsync.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31344,24 +31699,14 @@ ] }, { - "Route": "_framework/System.Runtime.Serialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ComponentModel.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31387,26 +31732,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Runtime.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", + "Route": "_framework/System.ComponentModel.TypeConverter.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.TypeConverter.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31436,24 +31773,14 @@ ] }, { - "Route": "_framework/System.Runtime.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ComponentModel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ComponentModel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31479,26 +31806,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", + "Route": "_framework/System.Configuration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Configuration.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31528,24 +31847,51 @@ ] }, { - "Route": "_framework/System.Security.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Console.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Console.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Core.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Core.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31571,26 +31917,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Claims.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", + "Route": "_framework/System.Data.Common.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.Common.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31620,24 +31958,51 @@ ] }, { - "Route": "_framework/System.Security.Claims.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Data.DataSetExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.DataSetExtensions.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Data.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Data.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31663,26 +32028,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", + "Route": "_framework/System.Diagnostics.Contracts.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Contracts.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31712,24 +32069,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Diagnostics.Debug.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Debug.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31755,26 +32102,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", + "Route": "_framework/System.Diagnostics.DiagnosticSource.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.DiagnosticSource.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31804,24 +32143,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Cng.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Diagnostics.FileVersionInfo.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.FileVersionInfo.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31847,26 +32176,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", + "Route": "_framework/System.Diagnostics.Process.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Process.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31896,24 +32217,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Csp.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Diagnostics.StackTrace.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.StackTrace.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31939,26 +32250,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", + "Route": "_framework/System.Diagnostics.TextWriterTraceListener.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TextWriterTraceListener.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -31988,24 +32291,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Encoding.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Diagnostics.Tools.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tools.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Diagnostics.TraceSource.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.TraceSource.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32031,26 +32361,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", + "Route": "_framework/System.Diagnostics.Tracing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Diagnostics.Tracing.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32080,24 +32402,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Drawing.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.Primitives.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Drawing.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Drawing.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32123,26 +32472,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", + "Route": "_framework/System.Dynamic.Runtime.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Dynamic.Runtime.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32172,24 +32513,51 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.Primitives.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Formats.Asn1.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Asn1.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Formats.Tar.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Formats.Tar.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32215,26 +32583,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", + "Route": "_framework/System.Globalization.Calendars.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Calendars.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32264,24 +32624,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Globalization.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32307,26 +32657,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Cryptography.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", + "Route": "_framework/System.Globalization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Globalization.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32356,24 +32698,14 @@ ] }, { - "Route": "_framework/System.Security.Cryptography.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Compression.Brotli.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.Brotli.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32399,26 +32731,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", + "Route": "_framework/System.IO.Compression.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.FileSystem.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32448,24 +32772,14 @@ ] }, { - "Route": "_framework/System.Security.Principal.Windows.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.Compression.ZipFile.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.ZipFile.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32491,26 +32805,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.Principal.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", + "Route": "_framework/System.IO.Compression.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Compression.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32540,24 +32846,14 @@ ] }, { - "Route": "_framework/System.Security.Principal.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.FileSystem.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.AccessControl.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32583,26 +32879,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.SecureString.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", + "Route": "_framework/System.IO.FileSystem.DriveInfo.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.DriveInfo.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32632,24 +32920,14 @@ ] }, { - "Route": "_framework/System.Security.SecureString.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.FileSystem.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32675,26 +32953,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Security.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", + "Route": "_framework/System.IO.FileSystem.Watcher.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.Watcher.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32724,24 +32994,14 @@ ] }, { - "Route": "_framework/System.Security.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.IO.FileSystem.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.FileSystem.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32767,26 +33027,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceModel.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", + "Route": "_framework/System.IO.IsolatedStorage.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.IsolatedStorage.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32816,24 +33068,51 @@ ] }, { - "Route": "_framework/System.ServiceModel.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.wasm.gz", - "Selectors": [ + "Route": "_framework/System.IO.MemoryMappedFiles.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.MemoryMappedFiles.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.Pipelines.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipelines.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32859,26 +33138,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ServiceProcess.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", + "Route": "_framework/System.IO.Pipes.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32908,24 +33179,51 @@ ] }, { - "Route": "_framework/System.ServiceProcess.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.wasm.gz", - "Selectors": [ + "Route": "_framework/System.IO.Pipes.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.Pipes.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.IO.UnmanagedMemoryStream.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.UnmanagedMemoryStream.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -32951,26 +33249,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", + "Route": "_framework/System.IO.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.IO.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33000,24 +33290,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.CodePages.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Linq.AsyncEnumerable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.AsyncEnumerable.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33043,26 +33323,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", + "Route": "_framework/System.Linq.Expressions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Expressions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33092,24 +33364,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Linq.Parallel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Parallel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33135,26 +33397,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encoding.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", + "Route": "_framework/System.Linq.Queryable.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.Queryable.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33184,24 +33438,14 @@ ] }, { - "Route": "_framework/System.Text.Encoding.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Linq.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33227,26 +33471,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", + "Route": "_framework/System.Memory.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Memory.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33276,24 +33512,51 @@ ] }, { - "Route": "_framework/System.Text.Encodings.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.Http.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.Json.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.Http.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Http.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33319,26 +33582,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.Json.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", + "Route": "_framework/System.Net.HttpListener.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.HttpListener.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33368,24 +33623,51 @@ ] }, { - "Route": "_framework/System.Text.Json.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.Mail.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Mail.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.NameResolution.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NameResolution.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33411,26 +33693,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", + "Route": "_framework/System.Net.NetworkInformation.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.NetworkInformation.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33460,24 +33734,51 @@ ] }, { - "Route": "_framework/System.Text.RegularExpressions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Net.Ping.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Ping.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Net.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33503,26 +33804,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", + "Route": "_framework/System.Net.Quic.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Quic.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33552,24 +33845,14 @@ ] }, { - "Route": "_framework/System.Threading.AccessControl.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.AccessControl.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Requests.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Requests.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33595,26 +33878,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Channels.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", + "Route": "_framework/System.Net.Security.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Security.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33644,24 +33919,14 @@ ] }, { - "Route": "_framework/System.Threading.Channels.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.ServerSentEvents.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServerSentEvents.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33687,26 +33952,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", + "Route": "_framework/System.Net.ServicePoint.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.ServicePoint.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33736,24 +33993,14 @@ ] }, { - "Route": "_framework/System.Threading.Overlapped.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.Sockets.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.Sockets.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33779,26 +34026,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", + "Route": "_framework/System.Net.WebClient.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebClient.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33828,24 +34067,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.WebHeaderCollection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebHeaderCollection.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33871,26 +34100,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", + "Route": "_framework/System.Net.WebProxy.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebProxy.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33920,24 +34141,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Extensions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.WebSockets.Client.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.Client.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -33963,26 +34174,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", + "Route": "_framework/System.Net.WebSockets.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.WebSockets.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34012,24 +34215,14 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.Parallel.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Net.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Net.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34055,26 +34248,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Tasks.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", + "Route": "_framework/System.Numerics.Vectors.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.Vectors.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34104,24 +34289,51 @@ ] }, { - "Route": "_framework/System.Threading.Tasks.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Numerics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Numerics.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.ObjectModel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ObjectModel.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34147,26 +34359,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Thread.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", + "Route": "_framework/System.Private.CoreLib.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.CoreLib.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34196,24 +34400,51 @@ ] }, { - "Route": "_framework/System.Threading.Thread.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Private.DataContractSerialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.DataContractSerialization.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Private.Uri.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Uri.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34239,26 +34470,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", + "Route": "_framework/System.Private.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.Linq.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34288,24 +34511,14 @@ ] }, { - "Route": "_framework/System.Threading.ThreadPool.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Private.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Private.Xml.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34331,26 +34544,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.Timer.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", + "Route": "_framework/System.Reflection.DispatchProxy.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.DispatchProxy.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34380,24 +34585,14 @@ ] }, { - "Route": "_framework/System.Threading.Timer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Reflection.Emit.ILGeneration.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.ILGeneration.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34423,26 +34618,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Threading.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", + "Route": "_framework/System.Reflection.Emit.Lightweight.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.Lightweight.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34472,24 +34659,14 @@ ] }, { - "Route": "_framework/System.Threading.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Reflection.Emit.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Emit.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34515,26 +34692,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.Local.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", + "Route": "_framework/System.Reflection.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Extensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34564,24 +34733,51 @@ ] }, { - "Route": "_framework/System.Transactions.Local.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.Metadata.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Metadata.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Reflection.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34607,26 +34803,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Transactions.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", + "Route": "_framework/System.Reflection.TypeExtensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.TypeExtensions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34656,24 +34844,51 @@ ] }, { - "Route": "_framework/System.Transactions.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Reflection.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Reflection.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Resources.Reader.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Reader.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34699,26 +34914,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.ValueTuple.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", + "Route": "_framework/System.Resources.ResourceManager.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.ResourceManager.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34748,24 +34955,51 @@ ] }, { - "Route": "_framework/System.ValueTuple.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Resources.Writer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Resources.Writer.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.Unsafe.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34791,26 +35025,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", + "Route": "_framework/System.Runtime.CompilerServices.VisualC.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.CompilerServices.VisualC.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34840,24 +35066,14 @@ ] }, { - "Route": "_framework/System.Web.HttpUtility.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34883,26 +35099,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Web.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", + "Route": "_framework/System.Runtime.Handles.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Handles.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34932,24 +35140,14 @@ ] }, { - "Route": "_framework/System.Web.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.InteropServices.JavaScript.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.JavaScript.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -34975,26 +35173,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Windows.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", + "Route": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.RuntimeInformation.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35024,24 +35214,14 @@ ] }, { - "Route": "_framework/System.Windows.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.InteropServices.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.InteropServices.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35067,26 +35247,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.Linq.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", + "Route": "_framework/System.Runtime.Intrinsics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Intrinsics.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35116,24 +35288,14 @@ ] }, { - "Route": "_framework/System.Xml.Linq.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Loader.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Loader.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35159,26 +35321,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", + "Route": "_framework/System.Runtime.Numerics.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Numerics.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35208,24 +35362,14 @@ ] }, { - "Route": "_framework/System.Xml.ReaderWriter.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Serialization.Formatters.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Formatters.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35251,26 +35395,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.Serialization.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35300,24 +35436,14 @@ ] }, { - "Route": "_framework/System.Xml.Serialization.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Runtime.Serialization.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Primitives.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35343,26 +35469,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", + "Route": "_framework/System.Runtime.Serialization.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.Xml.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35392,24 +35510,51 @@ ] }, { - "Route": "_framework/System.Xml.XDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Runtime.Serialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.Serialization.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Runtime.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Runtime.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35435,26 +35580,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", + "Route": "_framework/System.Security.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35484,24 +35621,51 @@ ] }, { - "Route": "_framework/System.Xml.XPath.XDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Claims.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Claims.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Cryptography.Algorithms.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Algorithms.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35527,26 +35691,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XPath.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Cng.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Cng.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35576,24 +35732,14 @@ ] }, { - "Route": "_framework/System.Xml.XPath.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Cryptography.Csp.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Csp.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35619,26 +35765,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Encoding.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Encoding.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35668,24 +35806,14 @@ ] }, { - "Route": "_framework/System.Xml.XmlDocument.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Cryptography.OpenSsl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.OpenSsl.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35711,26 +35839,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", + "Route": "_framework/System.Security.Cryptography.Primitives.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.Primitives.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35760,24 +35880,14 @@ ] }, { - "Route": "_framework/System.Xml.XmlSerializer.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Security.Cryptography.X509Certificates.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.X509Certificates.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35803,26 +35913,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.Xml.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", + "Route": "_framework/System.Security.Cryptography.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Cryptography.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35852,24 +35954,51 @@ ] }, { - "Route": "_framework/System.Xml.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.Principal.Windows.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.Windows.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Security.Principal.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.Principal.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35895,26 +36024,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/System.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", + "Route": "_framework/System.Security.SecureString.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.SecureString.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35944,24 +36065,51 @@ ] }, { - "Route": "_framework/System.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Security.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Security.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.ServiceModel.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceModel.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -35987,26 +36135,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/WindowsBase.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", + "Route": "_framework/System.ServiceProcess.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ServiceProcess.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36036,24 +36176,51 @@ ] }, { - "Route": "_framework/WindowsBase.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Text.Encoding.CodePages.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.CodePages.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Text.Encoding.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.Extensions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36079,33 +36246,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazor.webassembly.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "Route": "_framework/System.Text.Encoding.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encoding.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36128,31 +36287,21 @@ ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.Encodings.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Encodings.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36171,33 +36320,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm.pdb.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", + "Route": "_framework/System.Text.Json.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.Json.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36220,31 +36361,21 @@ ] }, { - "Route": "_framework/blazorwasm.pdb", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Text.RegularExpressions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Text.RegularExpressions.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36263,26 +36394,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/blazorwasm.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", + "Route": "_framework/System.Threading.AccessControl.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.AccessControl.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36312,24 +36435,14 @@ ] }, { - "Route": "_framework/blazorwasm.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.wasm.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Channels.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Channels.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36355,33 +36468,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "Route": "_framework/System.Threading.Overlapped.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Overlapped.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36404,31 +36509,21 @@ ] }, { - "Route": "_framework/dotnet.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Tasks.Dataflow.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Dataflow.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36445,59 +36540,64 @@ ], "EndpointProperties": [ { - "Name": "PreloadAs", - "Value": "script" - }, + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Threading.Tasks.Extensions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Extensions.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "PreloadCrossorigin", - "Value": "anonymous" + "Name": "Cache-Control", + "Value": "no-cache" }, { - "Name": "PreloadGroup", - "Value": "webassembly" + "Name": "Content-Length", + "Value": "__content-length__" }, { - "Name": "PreloadOrder", - "Value": "1" + "Name": "Content-Type", + "Value": "application/wasm" }, { - "Name": "PreloadPriority", - "Value": "high" + "Name": "ETag", + "Value": "__etag__" }, { - "Name": "PreloadRel", - "Value": "preload" + "Name": "Last-Modified", + "Value": "__last-modified__" }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.js.map.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", + "Route": "_framework/System.Threading.Tasks.Parallel.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.Parallel.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36520,31 +36620,21 @@ ] }, { - "Route": "_framework/dotnet.js.map", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.map.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.Tasks.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Tasks.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36563,33 +36653,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", + "Route": "_framework/System.Threading.Thread.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Thread.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36612,31 +36694,21 @@ ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Threading.ThreadPool.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.ThreadPool.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36655,26 +36727,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.native.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", + "Route": "_framework/System.Threading.Timer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.Timer.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36704,24 +36768,51 @@ ] }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Threading.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Threading.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Transactions.Local.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.Local.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -36747,33 +36838,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", + "Route": "_framework/System.Transactions.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Transactions.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36796,31 +36879,21 @@ ] }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.ValueTuple.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.ValueTuple.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36839,33 +36912,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/dotnet.runtime.js.map.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", + "Route": "_framework/System.Web.HttpUtility.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.HttpUtility.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36888,31 +36953,21 @@ ] }, { - "Route": "_framework/dotnet.runtime.js.map", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.map.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Web.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Web.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36931,33 +36986,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_CJK.dat.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "Route": "_framework/System.Windows.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Windows.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -36980,31 +37027,21 @@ ] }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.Linq.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Linq.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37023,33 +37060,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_EFIGS.dat.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "Route": "_framework/System.Xml.ReaderWriter.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.ReaderWriter.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37072,31 +37101,21 @@ ] }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.Serialization.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.Serialization.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37115,33 +37134,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/icudt_no_CJK.dat.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "Route": "_framework/System.Xml.XDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XDocument.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37164,31 +37175,21 @@ ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/System.Xml.XPath.XDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.XDocument.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37207,26 +37208,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/mscorlib.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", + "Route": "_framework/System.Xml.XPath.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XPath.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37256,24 +37249,51 @@ ] }, { - "Route": "_framework/mscorlib.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.wasm.gz", - "Selectors": [ + "Route": "_framework/System.Xml.XmlDocument.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlDocument.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/System.Xml.XmlSerializer.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.XmlSerializer.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37299,26 +37319,18 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_framework/netstandard.wasm.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", + "Route": "_framework/System.Xml.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.Xml.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37348,24 +37360,51 @@ ] }, { - "Route": "_framework/netstandard.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.wasm.gz", - "Selectors": [ + "Route": "_framework/System.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\System.wasm", + "Selectors": [], + "ResponseHeaders": [ { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" } ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/WindowsBase.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\WindowsBase.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37391,33 +37430,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "css/app.css.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", + "Route": "_framework/blazorwasm.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\blazorwasm.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37440,31 +37471,21 @@ ] }, { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\css\\app.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/mscorlib.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\mscorlib.wasm", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37483,33 +37504,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "custom-service-worker-assets.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", + "Route": "_framework/netstandard.wasm", + "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\netstandard.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/wasm" }, { "Name": "ETag", @@ -37532,31 +37545,21 @@ ] }, { - "Route": "custom-service-worker-assets.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\custom-service-worker-assets.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "Fake-License.txt", + "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/plain" }, { "Name": "ETag", @@ -37575,33 +37578,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "index.html.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "text/css" }, { "Name": "ETag", @@ -37625,23 +37620,13 @@ }, { "Route": "index.html", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\index.html.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37667,16 +37652,49 @@ { "Name": "integrity", "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/RazorClassLibrary.pdb", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" }, { - "Name": "original-resource", - "Value": "__original-resource__" + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" } ] }, { - "Route": "serviceworkers/my-service-worker.js.gz", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", + "Route": "_content/RazorClassLibrary/styles.css.gz", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", "Selectors": [], "ResponseHeaders": [ { @@ -37693,7 +37711,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/css" }, { "Name": "ETag", @@ -37716,8 +37734,8 @@ ] }, { - "Route": "serviceworkers/my-service-worker.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\serviceworkers\\my-service-worker.js.gz", + "Route": "_content/RazorClassLibrary/styles.css", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", "Selectors": [ { "Name": "Content-Encoding", @@ -37740,7 +37758,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/css" }, { "Name": "ETag", @@ -37767,14 +37785,18 @@ ] }, { - "Route": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\hotreload\\Microsoft.DotNet.HotReload.WebAssembly.Browser.lib.module.js", + "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js.gz", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37804,14 +37826,24 @@ ] }, { - "Route": "custom-service-worker-assets.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\custom-service-worker-assets.js.build", - "Selectors": [], + "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", + "Selectors": [ + { + "Name": "Content-Encoding", + "Value": "gzip", + "Quality": "__quality__" + } + ], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, + { + "Name": "Content-Encoding", + "Value": "gzip" + }, { "Name": "Content-Length", "Value": "__content-length__" @@ -37837,12 +37869,16 @@ { "Name": "integrity", "Value": "__integrity__" + }, + { + "Name": "original-resource", + "Value": "__original-resource__" } ] }, { - "Route": "serviceworkers/my-service-worker.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js.build", + "Route": "_content/RazorClassLibrary/styles.css", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", "Selectors": [], "ResponseHeaders": [ { @@ -37855,7 +37891,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/css" }, { "Name": "ETag", @@ -37878,8 +37914,8 @@ ] }, { - "Route": "Fake-License.txt", - "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt", + "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js", + "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", "Selectors": [], "ResponseHeaders": [ { @@ -37892,7 +37928,7 @@ }, { "Name": "Content-Type", - "Value": "text/plain" + "Value": "text/javascript" }, { "Name": "ETag", @@ -37915,8 +37951,8 @@ ] }, { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css", + "Route": "_framework/dotnet.js.map", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js.map", "Selectors": [], "ResponseHeaders": [ { @@ -37929,7 +37965,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/plain" }, { "Name": "ETag", @@ -37952,8 +37988,8 @@ ] }, { - "Route": "index.html", - "AssetFile": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html", + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "Selectors": [], "ResponseHeaders": [ { @@ -37966,7 +38002,7 @@ }, { "Name": "Content-Type", - "Value": "text/html" + "Value": "text/javascript" }, { "Name": "ETag", @@ -37989,25 +38025,21 @@ ] }, { - "Route": "_content/RazorClassLibrary/styles.css.gz", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/wasm" }, { "Name": "ETag", @@ -38030,31 +38062,21 @@ ] }, { - "Route": "_content/RazorClassLibrary/styles.css", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\styles.css.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "text/javascript" }, { "Name": "ETag", @@ -38073,33 +38095,25 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js.gz", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", + "Route": "_framework/dotnet.runtime.js.map", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js.map", "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "text/plain" }, { "Name": "ETag", @@ -38122,31 +38136,21 @@ ] }, { - "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\obj\\Debug\\${Tfm}\\compressed\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js.gz", - "Selectors": [ - { - "Name": "Content-Encoding", - "Value": "gzip", - "Quality": "__quality__" - } - ], + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Selectors": [], "ResponseHeaders": [ { "Name": "Cache-Control", "Value": "no-cache" }, - { - "Name": "Content-Encoding", - "Value": "gzip" - }, { "Name": "Content-Length", "Value": "__content-length__" }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -38165,16 +38169,12 @@ { "Name": "integrity", "Value": "__integrity__" - }, - { - "Name": "original-resource", - "Value": "__original-resource__" } ] }, { - "Route": "_content/RazorClassLibrary/styles.css", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css", + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "Selectors": [], "ResponseHeaders": [ { @@ -38187,7 +38187,7 @@ }, { "Name": "Content-Type", - "Value": "text/css" + "Value": "application/octet-stream" }, { "Name": "ETag", @@ -38210,8 +38210,8 @@ ] }, { - "Route": "_content/RazorClassLibrary/wwwroot/exampleJsInterop.js", - "AssetFile": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js", + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "Selectors": [], "ResponseHeaders": [ { @@ -38224,7 +38224,7 @@ }, { "Name": "Content-Type", - "Value": "text/javascript" + "Value": "application/octet-stream" }, { "Name": "ETag", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json index 45d07ddf93ee..dfeabb0e4631 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json @@ -228,12 +228,6 @@ "${OutputPath}\\wwwroot\\index.html.br", "${OutputPath}\\wwwroot\\index.html.gz", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", @@ -449,6 +443,12 @@ "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm-minimal.wasm", "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm.br", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.wasm.gz", diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json index 3df4ae6c405d..c54bdbec55e1 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json @@ -39,144 +39,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "SourceId": "blazorwasm-minimal", - "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", @@ -204,7 +66,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Publish", @@ -212,7 +74,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -227,7 +89,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Publish", @@ -235,7 +97,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -250,7 +112,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Publish", @@ -258,7 +120,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -3363,14 +3225,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3386,14 +3248,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3409,14 +3271,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3432,14 +3294,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3455,14 +3317,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3478,14 +3340,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3501,14 +3363,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3524,14 +3386,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3547,14 +3409,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3792,7 +3654,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Publish", @@ -3815,7 +3677,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Publish", @@ -3838,7 +3700,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Publish", @@ -3861,7 +3723,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Publish", @@ -3884,7 +3746,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Publish", @@ -3907,7 +3769,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Publish", @@ -3930,7 +3792,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Publish", @@ -3953,7 +3815,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Publish", @@ -3976,7 +3838,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Publish", @@ -3999,7 +3861,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Publish", @@ -4022,7 +3884,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Publish", @@ -4045,7 +3907,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Publish", @@ -4068,7 +3930,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Publish", @@ -4091,7 +3953,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Publish", @@ -4114,7 +3976,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Publish", @@ -4137,7 +3999,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Publish", @@ -4160,7 +4022,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Publish", @@ -4183,7 +4045,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Publish", @@ -4206,7 +4068,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Publish", @@ -4229,7 +4091,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Publish", @@ -4252,7 +4114,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Publish", @@ -4275,7 +4137,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Publish", @@ -4298,7 +4160,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Publish", @@ -4321,7 +4183,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Publish", @@ -4344,7 +4206,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Publish", @@ -4367,7 +4229,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Publish", @@ -4390,7 +4252,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Publish", @@ -4413,7 +4275,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Publish", @@ -4436,7 +4298,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Publish", @@ -4459,7 +4321,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Publish", @@ -4482,7 +4344,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Publish", @@ -4505,7 +4367,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Console.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Publish", @@ -4528,7 +4390,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Publish", @@ -4551,7 +4413,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Publish", @@ -4574,7 +4436,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Publish", @@ -4597,7 +4459,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Publish", @@ -4620,7 +4482,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Publish", @@ -4643,7 +4505,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Publish", @@ -4666,7 +4528,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Memory.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Publish", @@ -4689,7 +4551,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Net.Http.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Publish", @@ -4712,7 +4574,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ObjectModel.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Publish", @@ -4735,7 +4597,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Publish", @@ -4758,7 +4620,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.Uri.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Publish", @@ -4781,7 +4643,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Publish", @@ -4804,7 +4666,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Publish", @@ -4827,7 +4689,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Publish", @@ -4850,7 +4712,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Publish", @@ -4873,7 +4735,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Publish", @@ -4896,7 +4758,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Publish", @@ -4919,7 +4781,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Publish", @@ -4942,7 +4804,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Publish", @@ -4965,7 +4827,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Publish", @@ -4988,7 +4850,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Publish", @@ -5011,7 +4873,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Claims.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Publish", @@ -5034,7 +4896,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Publish", @@ -5057,7 +4919,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Publish", @@ -5080,7 +4942,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Json.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Publish", @@ -5103,7 +4965,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Publish", @@ -5126,7 +4988,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Publish", @@ -5149,7 +5011,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Publish", @@ -5172,7 +5034,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Publish", @@ -5195,7 +5057,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.wasm", "AssetKind": "Publish", @@ -5218,7 +5080,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm-minimal.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm-minimal.wasm", "AssetKind": "Publish", @@ -5241,7 +5103,7 @@ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", - "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Publish", @@ -5328,234 +5190,150 @@ "OriginalItemSpec": "wwwroot\\index.html", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" - } - ], - "Endpoints": [ - { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + } + ], + "Endpoints": [ + { + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -5568,7 +5346,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/javascript" }, { "Name": "ETag", @@ -22941,6 +22719,228 @@ "Value": "__integrity__" } ] + }, + { + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] } ] } \ No newline at end of file diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json index bfe21a04cedf..5a5128c444d5 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json @@ -92,144 +92,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", "SourceId": "blazorwasm", @@ -280,7 +142,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Publish", @@ -288,7 +150,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -303,7 +165,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Publish", @@ -311,7 +173,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -326,7 +188,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Publish", @@ -334,7 +196,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -3462,14 +3324,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3485,14 +3347,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3508,14 +3370,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3531,14 +3393,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3554,14 +3416,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3577,14 +3439,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3600,14 +3462,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3623,14 +3485,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3646,14 +3508,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3960,7 +3822,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Publish", @@ -3983,7 +3845,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Publish", @@ -4006,7 +3868,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Publish", @@ -4029,7 +3891,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Publish", @@ -4052,7 +3914,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Publish", @@ -4075,7 +3937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Publish", @@ -4098,7 +3960,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Publish", @@ -4121,7 +3983,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Publish", @@ -4144,7 +4006,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Publish", @@ -4167,7 +4029,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Publish", @@ -4190,7 +4052,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Publish", @@ -4213,7 +4075,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Publish", @@ -4236,7 +4098,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Publish", @@ -4259,7 +4121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Publish", @@ -4282,7 +4144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Publish", @@ -4305,7 +4167,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Publish", @@ -4328,7 +4190,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Publish", @@ -4351,7 +4213,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Publish", @@ -4374,7 +4236,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Publish", @@ -4397,7 +4259,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Publish", @@ -4420,7 +4282,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Publish", @@ -4443,7 +4305,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Publish", @@ -4466,7 +4328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Publish", @@ -4489,7 +4351,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\RazorClassLibrary.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.wasm", "AssetKind": "Publish", @@ -4512,7 +4374,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Publish", @@ -4535,7 +4397,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Publish", @@ -4558,7 +4420,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Publish", @@ -4581,7 +4443,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Publish", @@ -4604,7 +4466,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Publish", @@ -4627,7 +4489,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Publish", @@ -4650,7 +4512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Publish", @@ -4673,7 +4535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Publish", @@ -4696,7 +4558,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Console.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Publish", @@ -4719,7 +4581,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Publish", @@ -4742,7 +4604,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Publish", @@ -4765,7 +4627,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Publish", @@ -4788,7 +4650,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Publish", @@ -4811,7 +4673,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Publish", @@ -4834,7 +4696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Publish", @@ -4857,7 +4719,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Memory.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Publish", @@ -4880,7 +4742,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Net.Http.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Publish", @@ -4903,7 +4765,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ObjectModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Publish", @@ -4926,7 +4788,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Publish", @@ -4949,7 +4811,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.Uri.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Publish", @@ -4972,7 +4834,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Publish", @@ -4995,7 +4857,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Publish", @@ -5018,7 +4880,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Publish", @@ -5041,7 +4903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Publish", @@ -5064,7 +4926,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Publish", @@ -5087,7 +4949,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Publish", @@ -5110,7 +4972,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Publish", @@ -5133,7 +4995,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Publish", @@ -5156,7 +5018,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Publish", @@ -5179,7 +5041,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Publish", @@ -5202,7 +5064,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Claims.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Publish", @@ -5225,7 +5087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Publish", @@ -5248,7 +5110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Publish", @@ -5271,7 +5133,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Publish", @@ -5294,7 +5156,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Publish", @@ -5317,7 +5179,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Publish", @@ -5340,7 +5202,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Publish", @@ -5363,7 +5225,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Publish", @@ -5386,7 +5248,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.wasm", "AssetKind": "Publish", @@ -5409,7 +5271,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.wasm", "AssetKind": "Publish", @@ -5432,7 +5294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Publish", @@ -5634,234 +5496,150 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" - } - ], - "Endpoints": [ - { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + } + ], + "Endpoints": [ + { + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", "Selectors": [], "ResponseHeaders": [ { @@ -5874,7 +5652,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/css" }, { "Name": "ETag", @@ -5897,8 +5675,8 @@ ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -5911,7 +5689,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/javascript" }, { "Name": "ETag", @@ -23870,6 +23648,228 @@ "Value": "__integrity__" } ] + }, + { + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] } ] } \ No newline at end of file diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json index bfe21a04cedf..5a5128c444d5 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json @@ -92,144 +92,6 @@ "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.native.wasm", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/dotnet.runtime.js", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_EFIGS.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, - { - "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", - "SourceId": "blazorwasm", - "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", - "BasePath": "/", - "RelativePath": "_framework/icudt_no_CJK.dat", - "AssetKind": "Publish", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "WasmResource", - "AssetTraitValue": "native", - "Fingerprint": "__fingerprint__", - "Integrity": "__integrity__", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", - "FileLength": -1, - "LastWriteTime": "0001-01-01T00:00:00+00:00" - }, { "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\Fake-License.txt.gz", "SourceId": "blazorwasm", @@ -280,7 +142,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.js.gz", "AssetKind": "Publish", @@ -288,7 +150,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -303,7 +165,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.native.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.native.wasm.gz", "AssetKind": "Publish", @@ -311,7 +173,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -326,7 +188,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.runtime.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\", "BasePath": "/", "RelativePath": "_framework/dotnet.runtime.js.gz", "AssetKind": "Publish", @@ -334,7 +196,7 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", @@ -3462,14 +3324,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3485,14 +3347,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.native.wasm.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.native.wasm.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3508,14 +3370,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.runtime.js.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\dotnet.runtime.js.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3531,14 +3393,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3554,14 +3416,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3577,14 +3439,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3600,14 +3462,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_EFIGS.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3623,14 +3485,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "br", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.br", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3646,14 +3508,14 @@ "AssetRole": "Alternative", "AssetMergeBehavior": "", "AssetMergeSource": "", - "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "RelatedAsset": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", "AssetTraitName": "Content-Encoding", "AssetTraitValue": "gzip", "Fingerprint": "__fingerprint__", "Integrity": "__integrity__", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\_framework\\icudt_no_CJK.dat.gz", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" }, @@ -3960,7 +3822,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Authorization.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.wasm", "AssetKind": "Publish", @@ -3983,7 +3845,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Forms.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.wasm", "AssetKind": "Publish", @@ -4006,7 +3868,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.wasm", "AssetKind": "Publish", @@ -4029,7 +3891,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm", "AssetKind": "Publish", @@ -4052,7 +3914,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Components.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Components.wasm", "AssetKind": "Publish", @@ -4075,7 +3937,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.AspNetCore.Metadata.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.wasm", "AssetKind": "Publish", @@ -4098,7 +3960,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.DotNet.HotReload.WebAssembly.Browser.wasm", "AssetKind": "Publish", @@ -4121,7 +3983,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.wasm", "AssetKind": "Publish", @@ -4144,7 +4006,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Binder.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.wasm", "AssetKind": "Publish", @@ -4167,7 +4029,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.FileExtensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.wasm", "AssetKind": "Publish", @@ -4190,7 +4052,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.wasm", "AssetKind": "Publish", @@ -4213,7 +4075,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Configuration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Configuration.wasm", "AssetKind": "Publish", @@ -4236,7 +4098,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.wasm", "AssetKind": "Publish", @@ -4259,7 +4121,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.DependencyInjection.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.wasm", "AssetKind": "Publish", @@ -4282,7 +4144,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.wasm", "AssetKind": "Publish", @@ -4305,7 +4167,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileProviders.Physical.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.wasm", "AssetKind": "Publish", @@ -4328,7 +4190,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.FileSystemGlobbing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.wasm", "AssetKind": "Publish", @@ -4351,7 +4213,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.Abstractions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.wasm", "AssetKind": "Publish", @@ -4374,7 +4236,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Logging.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Logging.wasm", "AssetKind": "Publish", @@ -4397,7 +4259,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Options.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Options.wasm", "AssetKind": "Publish", @@ -4420,7 +4282,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.Extensions.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.Extensions.Primitives.wasm", "AssetKind": "Publish", @@ -4443,7 +4305,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.WebAssembly.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.wasm", "AssetKind": "Publish", @@ -4466,7 +4328,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\Microsoft.JSInterop.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/Microsoft.JSInterop.wasm", "AssetKind": "Publish", @@ -4489,7 +4351,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\RazorClassLibrary.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/RazorClassLibrary.wasm", "AssetKind": "Publish", @@ -4512,7 +4374,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Concurrent.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Concurrent.wasm", "AssetKind": "Publish", @@ -4535,7 +4397,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.NonGeneric.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.NonGeneric.wasm", "AssetKind": "Publish", @@ -4558,7 +4420,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.Specialized.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.Specialized.wasm", "AssetKind": "Publish", @@ -4581,7 +4443,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Collections.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Collections.wasm", "AssetKind": "Publish", @@ -4604,7 +4466,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Annotations.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Annotations.wasm", "AssetKind": "Publish", @@ -4627,7 +4489,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.Primitives.wasm", "AssetKind": "Publish", @@ -4650,7 +4512,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.TypeConverter.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.TypeConverter.wasm", "AssetKind": "Publish", @@ -4673,7 +4535,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ComponentModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ComponentModel.wasm", "AssetKind": "Publish", @@ -4696,7 +4558,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Console.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Console.wasm", "AssetKind": "Publish", @@ -4719,7 +4581,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.DiagnosticSource.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.wasm", "AssetKind": "Publish", @@ -4742,7 +4604,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Diagnostics.Tracing.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Diagnostics.Tracing.wasm", "AssetKind": "Publish", @@ -4765,7 +4627,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.FileSystem.Watcher.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.FileSystem.Watcher.wasm", "AssetKind": "Publish", @@ -4788,7 +4650,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.IO.Pipelines.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.IO.Pipelines.wasm", "AssetKind": "Publish", @@ -4811,7 +4673,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.Expressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.Expressions.wasm", "AssetKind": "Publish", @@ -4834,7 +4696,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Linq.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Linq.wasm", "AssetKind": "Publish", @@ -4857,7 +4719,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Memory.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Memory.wasm", "AssetKind": "Publish", @@ -4880,7 +4742,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Net.Http.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Net.Http.wasm", "AssetKind": "Publish", @@ -4903,7 +4765,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.ObjectModel.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.ObjectModel.wasm", "AssetKind": "Publish", @@ -4926,7 +4788,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.CoreLib.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.CoreLib.wasm", "AssetKind": "Publish", @@ -4949,7 +4811,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Private.Uri.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Private.Uri.wasm", "AssetKind": "Publish", @@ -4972,7 +4834,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.ILGeneration.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.wasm", "AssetKind": "Publish", @@ -4995,7 +4857,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Emit.Lightweight.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Emit.Lightweight.wasm", "AssetKind": "Publish", @@ -5018,7 +4880,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Reflection.Primitives.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Reflection.Primitives.wasm", "AssetKind": "Publish", @@ -5041,7 +4903,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Resources.ResourceManager.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Resources.ResourceManager.wasm", "AssetKind": "Publish", @@ -5064,7 +4926,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.CompilerServices.Unsafe.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.wasm", "AssetKind": "Publish", @@ -5087,7 +4949,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Extensions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Extensions.wasm", "AssetKind": "Publish", @@ -5110,7 +4972,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.JavaScript.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.wasm", "AssetKind": "Publish", @@ -5133,7 +4995,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.InteropServices.RuntimeInformation.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.wasm", "AssetKind": "Publish", @@ -5156,7 +5018,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.Loader.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.Loader.wasm", "AssetKind": "Publish", @@ -5179,7 +5041,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Runtime.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Runtime.wasm", "AssetKind": "Publish", @@ -5202,7 +5064,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Claims.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Claims.wasm", "AssetKind": "Publish", @@ -5225,7 +5087,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Security.Cryptography.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Security.Cryptography.wasm", "AssetKind": "Publish", @@ -5248,7 +5110,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Encodings.Web.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Encodings.Web.wasm", "AssetKind": "Publish", @@ -5271,7 +5133,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.Json.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.Json.wasm", "AssetKind": "Publish", @@ -5294,7 +5156,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Text.RegularExpressions.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Text.RegularExpressions.wasm", "AssetKind": "Publish", @@ -5317,7 +5179,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.Tasks.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.Tasks.wasm", "AssetKind": "Publish", @@ -5340,7 +5202,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.ThreadPool.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.ThreadPool.wasm", "AssetKind": "Publish", @@ -5363,7 +5225,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.Threading.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.Threading.wasm", "AssetKind": "Publish", @@ -5386,7 +5248,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\System.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/System.wasm", "AssetKind": "Publish", @@ -5409,7 +5271,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\blazorwasm.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/blazorwasm.wasm", "AssetKind": "Publish", @@ -5432,7 +5294,7 @@ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\netstandard.wasm", "SourceId": "blazorwasm", "SourceType": "Project", - "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", + "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\publish\\", "BasePath": "/", "RelativePath": "_framework/netstandard.wasm", "AssetKind": "Publish", @@ -5634,234 +5496,150 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js", "FileLength": -1, "LastWriteTime": "0001-01-01T00:00:00+00:00" - } - ], - "Endpoints": [ - { - "Route": "css/app.css", - "AssetFile": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] }, { - "Route": "_framework/blazor.webassembly.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.native.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.native.wasm", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.native.wasm", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.native.wasm", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/wasm" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.runtime.js", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/dotnet.runtime.js", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.runtime.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Cache-Control", - "Value": "no-cache" - }, - { - "Name": "Content-Length", - "Value": "__content-length__" - }, - { - "Name": "Content-Type", - "Value": "application/octet-stream" - }, - { - "Name": "ETag", - "Value": "__etag__" - }, - { - "Name": "Last-Modified", - "Value": "__last-modified__" - }, - { - "Name": "Vary", - "Value": "Accept-Encoding" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "__integrity__" - } - ] + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" }, { - "Route": "_framework/icudt_EFIGS.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", + "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Publish", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "WasmResource", + "AssetTraitValue": "native", + "Fingerprint": "__fingerprint__", + "Integrity": "__integrity__", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "FileLength": -1, + "LastWriteTime": "0001-01-01T00:00:00+00:00" + } + ], + "Endpoints": [ + { + "Route": "css/app.css", + "AssetFile": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css", "Selectors": [], "ResponseHeaders": [ { @@ -5874,7 +5652,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/css" }, { "Name": "ETag", @@ -5897,8 +5675,8 @@ ] }, { - "Route": "_framework/icudt_no_CJK.dat", - "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", + "Route": "_framework/blazor.webassembly.js", + "AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js", "Selectors": [], "ResponseHeaders": [ { @@ -5911,7 +5689,7 @@ }, { "Name": "Content-Type", - "Value": "application/octet-stream" + "Value": "text/javascript" }, { "Name": "ETag", @@ -23870,6 +23648,228 @@ "Value": "__integrity__" } ] + }, + { + "Route": "_framework/dotnet.native.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.native.wasm", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.native.wasm", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/wasm" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/dotnet.runtime.js", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.runtime.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_EFIGS.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] + }, + { + "Route": "_framework/icudt_no_CJK.dat", + "AssetFile": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "__content-length__" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "__etag__" + }, + { + "Name": "Last-Modified", + "Value": "__last-modified__" + }, + { + "Name": "Vary", + "Value": "Accept-Encoding" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "__integrity__" + } + ] } ] } \ No newline at end of file From ce3be191a6820f6fc051514f6ab0443014460845 Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Mon, 23 Mar 2026 11:21:57 -0700 Subject: [PATCH 06/14] Update template engine error text expectations to match new output from sys.cl due to PR dotnet/command-line-api#2747 (cherry picked from commit 9ebeea7c33f46bf32796b28dea976c0794ca943a) --- .../ParserTests/InstallTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstallTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstallTests.cs index e238049d1160..268f682babdb 100644 --- a/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstallTests.cs +++ b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstallTests.cs @@ -36,7 +36,7 @@ public void Install_Error_NoArguments() ParseResult parseResult = myCommand.Parse($"new install"); Assert.True(parseResult.Errors.Any()); - Assert.Contains(parseResult.Errors, error => error.Message.Contains("Required argument missing")); + Assert.Contains(parseResult.Errors, error => error.Message.Contains("Required argument") && error.Message.Contains("missing")); Assert.Throws(() => new InstallCommandArgs((InstallCommand)parseResult.CommandResult.Command, parseResult)); } @@ -50,7 +50,7 @@ public void Install_Legacy_Error_NoArguments() ParseResult parseResult = myCommand.Parse($"new --install --interactive"); Assert.True(parseResult.Errors.Any()); - Assert.Contains(parseResult.Errors, error => error.Message.Contains("Required argument missing")); + Assert.Contains(parseResult.Errors, error => error.Message.Contains("Required argument") && error.Message.Contains("missing")); Assert.Throws(() => new InstallCommandArgs((LegacyInstallCommand)parseResult.CommandResult.Command, parseResult)); } From 5c88d9732866fb3e487a2f1bcaa0d815ac389a39 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Fri, 27 Mar 2026 13:15:57 -0500 Subject: [PATCH 07/14] Pin KnownWebAssemblySdkPack to runtime version in codeflow When the codeflow updates MicrosoftNETCoreAppRuntimePackageVersion, the WebAssembly.Pack version must also be pinned to match. Without this, the workload manifest from the bootstrap SDK resolves an older pack version that doesn't include changes from the incoming runtime (e.g. the Framework SourceType fix from runtime#125329), causing DiscoverPrecompressedAssets to crash on duplicate Identity keys in multi-client Blazor WASM publish scenarios. This mirrors the existing pattern for KnownILCompilerPack, KnownILLinkPack, and KnownCrossgen2Pack. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- Directory.Build.targets | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Directory.Build.targets b/Directory.Build.targets index cc71132b55a6..aa58aa33d1b8 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -61,6 +61,8 @@ ILCompilerPackVersion="$(MicrosoftNETCoreAppRuntimePackageVersion)" /> + From 0be720c1c11b0cc28a41ae7621f7a58ad2f615df Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Fri, 27 Mar 2026 16:23:58 -0500 Subject: [PATCH 08/14] Update tests for incoming runtime and templating changes - NativeAot: Account for 'lib' prefix on Unix native library outputs (runtime#124611 made this the default for non-Windows) - dotnet-new: Update Verify snapshots for STJ error messages (templating#9956 migrated from Newtonsoft.Json to System.Text.Json, changing the corrupted JSON error text) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../GivenThatWeWantToPublishAnAotApp.cs | 6 ++++-- ...owError_WhenGlobalSettingsFileIsCorrupted.verified.txt | 2 +- ...owError_WhenGlobalSettingsFileIsCorrupted.verified.txt | 8 ++++---- ...owError_WhenGlobalSettingsFileIsCorrupted.verified.txt | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs index 0fee7451304e..4836487d0ccd 100644 --- a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs +++ b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs @@ -870,7 +870,8 @@ public void NativeAotStaticLib_only_runs_when_switch_is_enabled(string targetFra var rid = buildProperties["NETCoreSdkPortableRuntimeIdentifier"]; var publishDirectory = publishCommand.GetOutputDirectory(targetFramework: targetFramework, runtimeIdentifier: rid).FullName; var staticLibSuffix = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".lib" : ".a"; - var publishedDll = Path.Combine(publishDirectory, $"{projectName}{staticLibSuffix}"); + var nativeLibPrefix = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? "" : "lib"; + var publishedDll = Path.Combine(publishDirectory, $"{nativeLibPrefix}{projectName}{staticLibSuffix}"); // The lib exist and should be native File.Exists(publishedDll).Should().BeTrue(); @@ -923,7 +924,8 @@ public void NativeAotSharedLib_only_runs_when_switch_is_enabled(string targetFra var rid = buildProperties["NETCoreSdkPortableRuntimeIdentifier"]; var publishDirectory = publishCommand.GetOutputDirectory(targetFramework: targetFramework, runtimeIdentifier: rid).FullName; var sharedLibSuffix = GetSharedLibSuffix(); - var publishedDll = Path.Combine(publishDirectory, $"{projectName}{sharedLibSuffix}"); + var nativeLibPrefix = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? "" : "lib"; + var publishedDll = Path.Combine(publishDirectory, $"{nativeLibPrefix}{projectName}{sharedLibSuffix}"); // The lib exist and should be native File.Exists(publishedDll).Should().BeTrue(); diff --git a/test/dotnet-new.IntegrationTests/Approvals/DotnetNewInstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt b/test/dotnet-new.IntegrationTests/Approvals/DotnetNewInstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt index efb0d71614ce..8ba4791cd09a 100644 --- a/test/dotnet-new.IntegrationTests/Approvals/DotnetNewInstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt +++ b/test/dotnet-new.IntegrationTests/Approvals/DotnetNewInstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt @@ -2,4 +2,4 @@ %TEMPLATE FOLDER% Error: Failed to retrieve template packages from provider 'Global Settings'. -Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: Error reading JObject from JsonReader. Path '', line 0, position 0.. \ No newline at end of file +Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0.. \ No newline at end of file diff --git a/test/dotnet-new.IntegrationTests/Approvals/DotnetNewUninstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt b/test/dotnet-new.IntegrationTests/Approvals/DotnetNewUninstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt index 95634a7b3d2d..0eadd49b9e40 100644 --- a/test/dotnet-new.IntegrationTests/Approvals/DotnetNewUninstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt +++ b/test/dotnet-new.IntegrationTests/Approvals/DotnetNewUninstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt @@ -1,8 +1,8 @@ Error: Failed to retrieve template packages from provider 'Global Settings'. -Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: Error reading JObject from JsonReader. Path '', line 0, position 0.. +Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0.. Error: Failed to retrieve template packages from provider 'Global Settings'. -Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: Error reading JObject from JsonReader. Path '', line 0, position 0.. +Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0.. Error: Failed to retrieve template packages from provider 'Global Settings'. -Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: Error reading JObject from JsonReader. Path '', line 0, position 0.. +Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0.. Error: Failed to retrieve template packages from provider 'Global Settings'. -Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: Error reading JObject from JsonReader. Path '', line 0, position 0.. \ No newline at end of file +Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0.. \ No newline at end of file diff --git a/test/dotnet-new.IntegrationTests/Approvals/DotnetNewUpdateTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt b/test/dotnet-new.IntegrationTests/Approvals/DotnetNewUpdateTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt index ce8cca3ddbd8..1206d6c9757f 100644 --- a/test/dotnet-new.IntegrationTests/Approvals/DotnetNewUpdateTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt +++ b/test/dotnet-new.IntegrationTests/Approvals/DotnetNewUpdateTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt @@ -1 +1 @@ -Error: Failed to retrieve template packages from provider 'Global Settings'.Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: Error reading JObject from JsonReader. Path '', line 0, position 0..Error: Failed to retrieve template packages from provider 'Global Settings'.Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: Error reading JObject from JsonReader. Path '', line 0, position 0.. \ No newline at end of file +Error: Failed to retrieve template packages from provider 'Global Settings'.Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0..Error: Failed to retrieve template packages from provider 'Global Settings'.Details: Failed to read installed template packages list at %GLOBAL SETTINGS FILE%. It might be due to the file is corrupted. Please review this file manually and fix the errors in JSON structure, or remove the file to clear up the list of list installed packages and reinstall them again. Details of the error: The input does not contain any JSON tokens. Expected the input to start with a valid JSON token, when isFinalBlock is true. LineNumber: 0 | BytePositionInLine: 0.. \ No newline at end of file From 29520a0279b89e9622a3d8c469a957d09c591edb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 28 Mar 2026 02:11:22 +0000 Subject: [PATCH 09/14] Update dependencies from build 308107 Updated Dependencies: dotnet-dev-certs, dotnet-user-jwts, dotnet-user-secrets, Microsoft.AspNetCore.Analyzers, Microsoft.AspNetCore.App.Ref, Microsoft.AspNetCore.App.Ref.Internal, Microsoft.AspNetCore.Authentication.Facebook, Microsoft.AspNetCore.Authentication.Google, Microsoft.AspNetCore.Authentication.MicrosoftAccount, Microsoft.AspNetCore.Authorization, Microsoft.AspNetCore.Components, Microsoft.AspNetCore.Components.Analyzers, Microsoft.AspNetCore.Components.Forms, Microsoft.AspNetCore.Components.SdkAnalyzers, Microsoft.AspNetCore.Components.Web, Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.Server, Microsoft.AspNetCore.Components.WebView, Microsoft.AspNetCore.DeveloperCertificates.XPlat, Microsoft.AspNetCore.Metadata, Microsoft.AspNetCore.Mvc.Analyzers, Microsoft.AspNetCore.Mvc.Api.Analyzers, Microsoft.AspNetCore.TestHost, Microsoft.Bcl.AsyncInterfaces, Microsoft.DotNet.Web.ItemTemplates.11.0, Microsoft.DotNet.Web.ProjectTemplates.11.0, Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.DotNet.Wpf.ProjectTemplates, Microsoft.Extensions.Configuration.Ini, Microsoft.Extensions.DependencyInjection.Abstractions, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.FileProviders.Abstractions, Microsoft.Extensions.FileProviders.Embedded, Microsoft.Extensions.FileSystemGlobbing, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.Logging.Console, Microsoft.Extensions.ObjectPool, Microsoft.JSInterop, Microsoft.NET.HostModel, Microsoft.NET.ILLink.Tasks, Microsoft.NET.Runtime.Emscripten.3.1.56.Cache.win-x64, Microsoft.NET.Sdk.WindowsDesktop, Microsoft.NETCore.App.Ref, Microsoft.NETCore.Platforms, Microsoft.Win32.SystemEvents, Microsoft.WindowsDesktop.App.Internal, Microsoft.WindowsDesktop.App.Ref, System.CodeDom, System.ComponentModel.Composition, System.Composition.AttributedModel, System.Composition.Convention, System.Composition.Hosting, System.Composition.Runtime, System.Composition.TypedParts, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Asn1, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Security.Cryptography.Pkcs, System.Security.Cryptography.ProtectedData, System.Security.Cryptography.Xml, System.Security.Permissions, System.ServiceProcess.ServiceController, System.Text.Encoding.CodePages, System.Text.Json, System.Windows.Extensions (Version 11.0.0-preview.3.26176.106 -> 11.0.0-preview.3.26177.105) Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal, Microsoft.CodeAnalysis.Razor.Tooling.Internal, Microsoft.NET.Sdk.Razor.SourceGenerators.Transport (Version 10.0.0-preview.26176.106 -> 10.0.0-preview.26177.105) Microsoft.Build, Microsoft.Build.Localization (Version 18.6.0-preview-26176-106 -> 18.6.0-preview-26177-105) Microsoft.Build.NuGetSdkResolver, NuGet.Build.Tasks, NuGet.Build.Tasks.Console, NuGet.Build.Tasks.Pack, NuGet.CommandLine.XPlat, NuGet.Commands, NuGet.Common, NuGet.Configuration, NuGet.Credentials, NuGet.DependencyResolver.Core, NuGet.Frameworks, NuGet.LibraryModel, NuGet.Localization, NuGet.Packaging, NuGet.ProjectModel, NuGet.Protocol, NuGet.Versioning (Version 7.6.0-rc.17706 -> 7.6.0-rc.17805) Microsoft.Build.Tasks.Git, Microsoft.SourceLink.AzureRepos.Git, Microsoft.SourceLink.Bitbucket.Git, Microsoft.SourceLink.Common, Microsoft.SourceLink.GitHub, Microsoft.SourceLink.GitLab, Microsoft.TemplateEngine.Abstractions, Microsoft.TemplateEngine.Authoring.TemplateVerifier, Microsoft.TemplateEngine.Edge, Microsoft.TemplateEngine.Mocks, Microsoft.TemplateEngine.Orchestrator.RunnableProjects, Microsoft.TemplateEngine.TestHelper, Microsoft.TemplateEngine.Utils, Microsoft.TemplateSearch.Common, Microsoft.TemplateSearch.TemplateDiscovery (Version 11.0.100-preview.3.26176.106 -> 11.0.100-preview.3.26177.105) Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.BuildClient, Microsoft.CodeAnalysis.CSharp, Microsoft.CodeAnalysis.CSharp.CodeStyle, Microsoft.CodeAnalysis.CSharp.Features, Microsoft.CodeAnalysis.CSharp.Workspaces, Microsoft.CodeAnalysis.ExternalAccess.HotReload, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.Workspaces.Common, Microsoft.CodeAnalysis.Workspaces.MSBuild, Microsoft.Net.Compilers.Toolset, Microsoft.Net.Compilers.Toolset.Framework (Version 5.6.0-2.26176.106 -> 5.6.0-2.26177.105) Microsoft.Deployment.DotNet.Releases (Version 2.0.0-preview.1.26176.106 -> 2.0.0-preview.1.26177.105) Microsoft.DiaSymReader, System.CommandLine (Version 3.0.0-preview.3.26176.106 -> 3.0.0-preview.3.26177.105) Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Installers, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.Build.Tasks.Workloads, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.SignTool, Microsoft.DotNet.XliffTasks, Microsoft.DotNet.XUnitExtensions (Version 11.0.0-beta.26176.106 -> 11.0.0-beta.26177.105) Microsoft.FSharp.Compiler (Version 15.2.100-preview3.26176.106 -> 15.2.100-preview3.26177.105) Microsoft.NET.Test.Sdk, Microsoft.TestPlatform.Build, Microsoft.TestPlatform.CLI (Version 18.5.0-preview-26176-106 -> 18.5.0-preview-26177-105) Microsoft.Web.Xdt (Version 3.3.0-preview.3.26176.106 -> 3.3.0-preview.3.26177.105) [[ commit created by automation ]] --- eng/Version.Details.props | 268 +++++++++---------- eng/Version.Details.xml | 538 +++++++++++++++++++------------------- global.json | 4 +- 3 files changed, 405 insertions(+), 405 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index ac88c2468fd5..edfead6fc7b0 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,141 +8,141 @@ This file should be imported by eng/Versions.props 2.1.0 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 10.0.0-preview.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 18.6.0-preview-26176-106 - 18.6.0-preview-26176-106 - 7.6.0-rc.17706 - 11.0.100-preview.3.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 10.0.0-preview.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 2.0.0-preview.1.26176.106 - 3.0.0-preview.3.26176.106 - 11.0.0-beta.26176.106 - 11.0.0-beta.26176.106 - 11.0.0-beta.26176.106 - 11.0.0-beta.26176.106 - 11.0.0-beta.26176.106 - 11.0.0-beta.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-beta.26176.106 - 11.0.0-beta.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 15.2.100-preview3.26176.106 - 11.0.0-preview.3.26176.106 - 5.6.0-2.26176.106 - 5.6.0-2.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 10.0.0-preview.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 18.6.0-preview-26177-105 + 18.6.0-preview-26177-105 + 7.6.0-rc.17805 + 11.0.100-preview.3.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 10.0.0-preview.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 2.0.0-preview.1.26177.105 + 3.0.0-preview.3.26177.105 + 11.0.0-beta.26177.105 + 11.0.0-beta.26177.105 + 11.0.0-beta.26177.105 + 11.0.0-beta.26177.105 + 11.0.0-beta.26177.105 + 11.0.0-beta.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-beta.26177.105 + 11.0.0-beta.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 15.2.100-preview3.26177.105 + 11.0.0-preview.3.26177.105 + 5.6.0-2.26177.105 + 5.6.0-2.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 10.0.0-preview.7.25377.103 - 10.0.0-preview.26176.106 - 11.0.0-preview.3.26176.106 - 18.5.0-preview-26176-106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 11.0.100-preview.3.26176.106 - 18.5.0-preview-26176-106 - 18.5.0-preview-26176-106 - 3.3.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 7.6.0-rc.17706 - 11.0.0-preview.3.26176.106 - 3.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 - 11.0.0-preview.3.26176.106 + 10.0.0-preview.26177.105 + 11.0.0-preview.3.26177.105 + 18.5.0-preview-26177-105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 11.0.100-preview.3.26177.105 + 18.5.0-preview-26177-105 + 18.5.0-preview-26177-105 + 3.3.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 7.6.0-rc.17805 + 11.0.0-preview.3.26177.105 + 3.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 + 11.0.0-preview.3.26177.105 2.2.0-preview.26174.1 4.2.0-preview.26174.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5f17856644b0..fee8a33830a0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,62 +1,62 @@ - + - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f @@ -68,174 +68,174 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f https://github.com/microsoft/testfx @@ -577,9 +577,9 @@ https://github.com/microsoft/testfx 926d2f3fbfce8f04a1c05e743d28715d93baa5bb - + https://github.com/dotnet/dotnet - 7af60210ff756fa343088d4dc1b7080c200dea50 + 0824e1b0e0c71f88afe0973df2cb3a05806b624f diff --git a/global.json b/global.json index 49b3f00f5b1d..4aceb855c085 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26176.106", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26176.106", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26177.105", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26177.105", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 4b5189e8f3987f802bacda53f0b13aceab1a436e Mon Sep 17 00:00:00 2001 From: Sven Boemer Date: Mon, 30 Mar 2026 11:17:37 -0700 Subject: [PATCH 10/14] Fix ILLink test to specify TrimmerRootAssembly by name instead of path ILLink behavior changed to require root assemblies specified by assembly name rather than file path. Update EnableNonFrameworkTrimming to use $(AssemblyName) instead of @(IntermediateAssembly->'%(FullPath)'). --- test/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs index cbd0ca0abaea..da163fb0c403 100644 --- a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs +++ b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs @@ -1926,7 +1926,7 @@ public static void EnableNonFrameworkTrimming(XDocument project) new XElement("Condition", "true"), new XElement("IsTrimmable", "true"))); items.Add(new XElement(ns + "TrimmerRootAssembly", - new XAttribute("Include", "@(IntermediateAssembly->'%(FullPath)')"))); + new XAttribute("Include", "$(AssemblyName)"))); } public static void AddFeatureDefinition(TestProject testProject, string assemblyName) From 4eef8c4f89e5a456168bb36c5b3d03fdc85c3ef6 Mon Sep 17 00:00:00 2001 From: Sven Boemer Date: Mon, 30 Mar 2026 16:34:08 -0700 Subject: [PATCH 11/14] Fix AOT test to set TrimmerSingleWarn on ResolvedFileToPublish instead of ManagedAssemblyToLink The SetMetadata helper in It_can_show_single_warning_per_assembly was hooking into PrepareForILLink and setting metadata on ManagedAssemblyToLink items. The v11.0 ILLink package refactored shared trim configuration into a new _PrepareTrimConfiguration target that runs earlier, and the AOT pipeline reads from ResolvedFileToPublish (not ManagedAssemblyToLink). Hook into the public ComputeResolvedFilesToPublishList target and set metadata on the correct item type so per-assembly overrides are visible to the ILC compiler. --- .../GivenThatWeWantToPublishAnAotApp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs index 4836487d0ccd..752ab0126453 100644 --- a/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs +++ b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs @@ -1033,13 +1033,13 @@ private void SetMetadata(XDocument project, string assemblyName, string key, str if (target == null) { target = new XElement(ns + "Target", - new XAttribute("BeforeTargets", "PrepareForILLink"), + new XAttribute("AfterTargets", "ComputeResolvedFilesToPublishList"), new XAttribute("Name", targetName)); project.Root.Add(target); } target.Add(new XElement(ns + "ItemGroup", - new XElement("ManagedAssemblyToLink", + new XElement("ResolvedFileToPublish", new XAttribute("Condition", $"'%(FileName)' == '{assemblyName}'"), new XAttribute(key, value)))); } From f5f785df33f60fdd7dcd374a3cebe9b3987e7571 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Thu, 2 Apr 2026 15:54:34 -0700 Subject: [PATCH 12/14] Add FilterItemsByDuplicateHash task to InTree.targets The task was still in use. The other two were removed in the vmr --- src/Tasks/sdk-tasks/sdk-tasks.InTree.targets | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Tasks/sdk-tasks/sdk-tasks.InTree.targets b/src/Tasks/sdk-tasks/sdk-tasks.InTree.targets index d6bab807c46a..11297df1d285 100644 --- a/src/Tasks/sdk-tasks/sdk-tasks.InTree.targets +++ b/src/Tasks/sdk-tasks/sdk-tasks.InTree.targets @@ -35,6 +35,11 @@ + + From 6421358881d3d44f4990db0883027b7eee68d5f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Fri, 3 Apr 2026 17:44:20 +0200 Subject: [PATCH 13/14] Manual dependency version update to latest build --- eng/Version.Details.props | 268 +++++++++---------- eng/Version.Details.xml | 536 +++++++++++++++++++------------------- global.json | 4 +- 3 files changed, 404 insertions(+), 404 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 5b07b633b6c0..ffdaeb0c23fb 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,141 +8,141 @@ This file should be imported by eng/Versions.props 2.1.0 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 10.0.0-preview.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 18.6.0-preview-26177-105 - 18.6.0-preview-26177-105 - 7.6.0-rc.17805 - 11.0.100-preview.3.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 10.0.0-preview.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 2.0.0-preview.1.26177.105 - 3.0.0-preview.3.26177.105 - 11.0.0-beta.26177.105 - 11.0.0-beta.26177.105 - 11.0.0-beta.26177.105 - 11.0.0-beta.26177.105 - 11.0.0-beta.26177.105 - 11.0.0-beta.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-beta.26177.105 - 11.0.0-beta.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 15.2.100-preview3.26177.105 - 11.0.0-preview.3.26177.105 - 5.6.0-2.26177.105 - 5.6.0-2.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 10.0.0-preview.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 18.6.0-preview-26202-104 + 18.6.0-preview-26202-104 + 7.6.0-rc.20304 + 11.0.100-preview.4.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 10.0.0-preview.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 2.0.0-preview.1.26202.104 + 3.0.0-preview.4.26202.104 + 11.0.0-beta.26202.104 + 11.0.0-beta.26202.104 + 11.0.0-beta.26202.104 + 11.0.0-beta.26202.104 + 11.0.0-beta.26202.104 + 11.0.0-beta.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-beta.26202.104 + 11.0.0-beta.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 15.2.100-preview4.26202.104 + 11.0.0-preview.4.26202.104 + 5.7.0-1.26202.104 + 5.7.0-1.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 10.0.0-preview.7.25377.103 - 10.0.0-preview.26177.105 - 11.0.0-preview.3.26177.105 - 18.5.0-preview-26177-105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 11.0.100-preview.3.26177.105 - 18.5.0-preview-26177-105 - 18.5.0-preview-26177-105 - 3.3.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 7.6.0-rc.17805 - 11.0.0-preview.3.26177.105 - 3.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 - 11.0.0-preview.3.26177.105 + 10.0.0-preview.26202.104 + 11.0.0-preview.4.26202.104 + 18.5.0-preview-26202-104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 11.0.100-preview.4.26202.104 + 18.5.0-preview-26202-104 + 18.5.0-preview-26202-104 + 3.3.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 7.6.0-rc.20304 + 11.0.0-preview.4.26202.104 + 3.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 + 11.0.0-preview.4.26202.104 2.2.1-preview.26201.3 4.2.1-preview.26201.3 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3155d3f93f8a..71da20b3ac34 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -2,61 +2,61 @@ - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c @@ -68,174 +68,174 @@ https://github.com/dotnet/dotnet 6a953e76162f3f079405f80e28664fa51b136740 - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c https://github.com/microsoft/testfx @@ -577,9 +577,9 @@ https://github.com/microsoft/testfx 4b12ce96553c32c1038bf81176b98a79994d6967 - + https://github.com/dotnet/dotnet - 0824e1b0e0c71f88afe0973df2cb3a05806b624f + 0d6cc667e66d7bec23439335118137f78c70306c diff --git a/global.json b/global.json index 4aceb855c085..20d6390a38e1 100644 --- a/global.json +++ b/global.json @@ -21,8 +21,8 @@ } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26177.105", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26177.105", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26202.104", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26202.104", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", "Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2811440" From 26de07fe9ff4fcdcf557966f6a0ae00334716400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Fri, 3 Apr 2026 19:10:04 +0200 Subject: [PATCH 14/14] Disable Publish_HostingMultipleBlazorWebApps_Works pending rebootstrap The DiscoverPrecompressedAssets task fails with a duplicate key error. The fix is merged in dotnet/runtime#126211 but requires a rebootstrap. Tracking issue: https://github.com/dotnet/sdk/issues/53689 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../WasmPublishIntegrationTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs index 9db79ef464c0..3607cc4ef54a 100644 --- a/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs @@ -1495,7 +1495,7 @@ public void Publish_WithInvariantGlobalizationEnabled_DoesNotCopyGlobalizationDa new FileInfo(Path.Combine(publishOutputDirectory, "wwwroot", "_framework", "icudt_no_CJK.dat")).Should().NotExist(); } - [RequiresMSBuildVersionFact("17.12", Reason = "Needs System.Text.Json 8.0.5")] + [RequiresMSBuildVersionFact("17.12", Reason = "Needs System.Text.Json 8.0.5", Skip = "https://github.com/dotnet/sdk/issues/53689")] public void Publish_HostingMultipleBlazorWebApps_Works() { // Regression test for https://github.com/dotnet/aspnetcore/issues/29264