From 5de031be6b7c8986d088cdf85f8c20f43e7ceaae Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Thu, 30 Mar 2023 16:49:05 -0700 Subject: [PATCH 01/14] Initial prototype --- sdk.sln | 16 +- ...soft.NET.Sdk.BlazorWebAssembly.6_0.targets | 177 +++++------- .../Tasks/ComputeBlazorFilesToCompress.cs | 3 + .../redist/targets/GenerateLayout.targets | 24 ++ ...ET.Sdk.StaticWebAssets.Compression.targets | 161 +++++++++++ ....Sdk.StaticWebAssets.ScopedCss.5_0.targets | 2 +- ....NET.Sdk.StaticWebAssets.ScopedCss.targets | 2 +- ...Sdk.StaticWebAssets.CurrentVersion.targets | 7 +- .../Tasks/BrotliCompress.cs | 121 ++++++++ src/StaticWebAssetsSdk/Tasks/GZipCompress.cs | 69 +++++ .../Tasks/ResolveCompressedAssets.cs | 266 ++++++++++++++++++ ...rosoft.NET.Sdk.StaticWebAssets.Tool.csproj | 15 + src/StaticWebAssetsSdk/Tool/Program.cs | 76 +++++ .../Tool/runtimeconfig.template.json | 3 + .../AspNetSdkBaselineTest.cs | 2 +- 15 files changed, 828 insertions(+), 116 deletions(-) create mode 100644 src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets create mode 100644 src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs create mode 100644 src/StaticWebAssetsSdk/Tasks/GZipCompress.cs create mode 100644 src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs create mode 100644 src/StaticWebAssetsSdk/Tool/Microsoft.NET.Sdk.StaticWebAssets.Tool.csproj create mode 100644 src/StaticWebAssetsSdk/Tool/Program.cs create mode 100644 src/StaticWebAssetsSdk/Tool/runtimeconfig.template.json diff --git a/sdk.sln b/sdk.sln index 4445953cca02..d28eb2fc4e4b 100644 --- a/sdk.sln +++ b/sdk.sln @@ -421,13 +421,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sdk", "Sdk", "{CA976F33-7BF EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Targets", "Targets", "{C5C73211-A713-40BF-8FC8-A690CCBE66F5}" ProjectSection(SolutionItems) = preProject + src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.5_0.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.5_0.targets src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.JSModules.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.JSModules.targets + src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.Pack.CrossTargeting.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.Pack.CrossTargeting.targets + src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.Pack.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.Pack.targets src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.props = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.props src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.5_0.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.5_0.targets src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.targets - src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.5_0.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.5_0.targets - src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.Pack.CrossTargeting.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.Pack.CrossTargeting.targets - src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.Pack.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.Pack.targets src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.targets = src\StaticWebAssetsSdk\Targets\Microsoft.NET.Sdk.StaticWebAssets.targets src\StaticWebAssetsSdk\Targets\Sdk.StaticWebAssets.CurrentVersion.props = src\StaticWebAssetsSdk\Targets\Sdk.StaticWebAssets.CurrentVersion.props src\StaticWebAssetsSdk\Targets\Sdk.StaticWebAssets.CurrentVersion.targets = src\StaticWebAssetsSdk\Targets\Sdk.StaticWebAssets.CurrentVersion.targets @@ -437,6 +437,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tasks", "Tasks", "{6C8E1E65 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.StaticWebAssets.Tasks", "src\StaticWebAssetsSdk\Tasks\Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj", "{3D42A6BA-38DB-4AA5-9F86-8A78D00D9A07}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tool", "Tool", "{51A31407-7C6A-42E9-93B8-F21DEC518A34}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.StaticWebAssets.Tool", "src\StaticWebAssetsSdk\Tool\Microsoft.NET.Sdk.StaticWebAssets.Tool.csproj", "{B8550E71-0CBE-4F88-AC79-2003EFED1DE1}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -827,6 +831,10 @@ Global {3D42A6BA-38DB-4AA5-9F86-8A78D00D9A07}.Debug|Any CPU.Build.0 = Debug|Any CPU {3D42A6BA-38DB-4AA5-9F86-8A78D00D9A07}.Release|Any CPU.ActiveCfg = Release|Any CPU {3D42A6BA-38DB-4AA5-9F86-8A78D00D9A07}.Release|Any CPU.Build.0 = Release|Any CPU + {B8550E71-0CBE-4F88-AC79-2003EFED1DE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B8550E71-0CBE-4F88-AC79-2003EFED1DE1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B8550E71-0CBE-4F88-AC79-2003EFED1DE1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B8550E71-0CBE-4F88-AC79-2003EFED1DE1}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -977,6 +985,8 @@ Global {C5C73211-A713-40BF-8FC8-A690CCBE66F5} = {9E9F3BB2-6FED-47BC-869C-BFAF6E7C85FC} {6C8E1E65-EA73-434D-818F-E564BFFE9F86} = {9E9F3BB2-6FED-47BC-869C-BFAF6E7C85FC} {3D42A6BA-38DB-4AA5-9F86-8A78D00D9A07} = {6C8E1E65-EA73-434D-818F-E564BFFE9F86} + {51A31407-7C6A-42E9-93B8-F21DEC518A34} = {9E9F3BB2-6FED-47BC-869C-BFAF6E7C85FC} + {B8550E71-0CBE-4F88-AC79-2003EFED1DE1} = {51A31407-7C6A-42E9-93B8-F21DEC518A34} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {FB8F26CE-4DE6-433F-B32A-79183020BBD6} diff --git a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets index 437a3c4aafc0..4a2d037ab819 100644 --- a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets +++ b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets @@ -31,10 +31,7 @@ Copyright (c) .NET Foundation. All rights reserved. - - - @@ -107,8 +104,55 @@ Copyright (c) .NET Foundation. All rights reserved. GeneratePublishBlazorBootJson; + + $(ResolveCompressedFilesDependsOn); + _ResolveBlazorWasmOutputs; + _AddBlazorWasmStaticWebAssets; + + + + $(ResolveCompressedFilesForPublishDependsOn); + ProcessPublishFilesForBlazor; + ComputeBlazorExtensions; + _AddPublishBlazorBootJsonToStaticWebAssets; + _CollectAssetsToCompress; + + + + + + <_BlazorBuildGZipCompressDirectory>$(IntermediateOutputPath)build-gz\ + <_BlazorPublishCompressDirectory>$(IntermediateOutputPath)compress\ + + + + + Build + gzip + _framework\** + _framework\blazor.boot.json + $(_BlazorBuildGZipCompressDirectory) + + + + Publish + gzip + $(_BlazorPublishCompressDirectory) + + + Publish + brotli + $(_BlazorPublishCompressDirectory) + + + + @@ -221,36 +265,6 @@ Copyright (c) .NET Foundation. All rights reserved. - - <_BlazorBuildGZipCompressDirectory>$(IntermediateOutputPath)build-gz\ - - - - - - - - - - - - - - - - <_BlazorBuildGZipCompressedFile> - %(RelatedAsset) - - - <_BlazorGzipStaticWebAsset Include="@(_BlazorBuildGZipCompressedFile->'%(FullPath)')" /> - - <_BlazorBuildBootJsonPath>$(IntermediateOutputPath)blazor.boot.json @@ -282,7 +296,6 @@ Copyright (c) .NET Foundation. All rights reserved. - @@ -315,7 +328,6 @@ Copyright (c) .NET Foundation. All rights reserved. - - + - @@ -463,6 +476,22 @@ Copyright (c) .NET Foundation. All rights reserved. + + + + BlazorPublishGzip + + + + BlazorPublishBrotli + + + + + <_PublishBlazorBootJson @@ -566,75 +596,4 @@ Copyright (c) .NET Foundation. All rights reserved. - - - <_CompressedFileOutputPath>$(IntermediateOutputPath)compress\ - <_BlazorWebAssemblyBrotliIncremental>true - - - - <_DotNetHostDirectory>$(NetCoreRoot) - <_DotNetHostFileName>dotnet - <_DotNetHostFileName Condition="'$(OS)' == 'Windows_NT'">dotnet.exe - - - - - - - - <_GzipFileToCompressForPublish Include="@(StaticWebAsset)" - Condition="'%(AssetKind)' != 'Build' and ('%(StaticWebAsset.AssetTraitName)' == 'BlazorWebAssemblyResource' or '%(StaticWebAsset.AssetTraitName)' == 'Culture')" > - %(Identity) - Alternative - Content-Encoding - gzip - - - <_BrotliFileToCompressForPublish Include="@(_GzipFileToCompressForPublish)" Condition="'%(AssetKind)' != 'Build'"> - br - - - - <_AlreadyGzipCompressedAssets - Include="@(StaticWebAsset)" - Condition="'%(AssetKind)' != 'Build' and ('%(StaticWebAsset.AssetTraitName)' == 'Content-Encoding' and '%(StaticWebAsset.AssetTraitValue)' == 'gzip')" /> - <_GzipFileToCompressForPublish Remove="@(_AlreadyGzipCompressedAssets->'%(RelatedAsset)')" /> - - - - - - - - - - - - - - - - <_BlazorPublishGZipCompressedFile> - %(RelatedAsset) - - <_BlazorPublishBrotliCompressedFile> - %(RelatedAsset) - - - - - - - diff --git a/src/BlazorWasmSdk/Tasks/ComputeBlazorFilesToCompress.cs b/src/BlazorWasmSdk/Tasks/ComputeBlazorFilesToCompress.cs index 5ce7636cd024..2b96c7c7c4dd 100644 --- a/src/BlazorWasmSdk/Tasks/ComputeBlazorFilesToCompress.cs +++ b/src/BlazorWasmSdk/Tasks/ComputeBlazorFilesToCompress.cs @@ -18,6 +18,9 @@ namespace Microsoft.NET.Sdk.BlazorWebAssembly // We can't just use the ItemSpec because for some assets that points to the output folder and causes issues with incrementalism. public class ComputeBlazorFilesToCompress : Task { + // TODO: Remove this class because the logic moved to the static web assets SDK. + // Then update the tests accordingly. + [Required] public ITaskItem[] Assets { get; set; } [Output] public ITaskItem[] AssetsToCompress { get; set; } diff --git a/src/Layout/redist/targets/GenerateLayout.targets b/src/Layout/redist/targets/GenerateLayout.targets index f21197cd6bd7..d789507889dd 100644 --- a/src/Layout/redist/targets/GenerateLayout.targets +++ b/src/Layout/redist/targets/GenerateLayout.targets @@ -278,6 +278,29 @@ SkipUnchangedFiles="true" /> + + + + + + + <_StaticWebAssetsToolsOutput Include="$(ArtifactsBinDir)Microsoft.NET.Sdk.StaticWebAssets.Tool\$(Configuration)\$(SdkTargetFramework)\publish\*.*" /> + + + + + + + + + + + + + + + + $(ResolveCompressedFilesDependsOn) + $(ResolveCompressedFilesForPublishDependsOn) + + + + + + $(StaticWebAssetsPrepareForRunDependsOn); + _CompressFiles; + + + + $(StaticWebAssetsPrepareForPublishDependsOn); + _CompressFilesForPublish; + + + + $(ResolveStaticWebAssetsInputsDependsOn); + _ResolveCompressedFiles; + + + + $(ResolvePublishStaticWebAssetsDependsOn); + _ResolveCompressedFilesForPublish; + + + + + + + + <_CompressedFileIncludePatternForBuild + Include="@(CompressionConfiguration)" + Condition="'%(Stage)' == 'Build'" /> + + + + + + + + + + + + + + + + + + + <_CompressedFileIncludePatternForPublish + Include="@(CompressionConfiguration)" + Condition="'%(Stage)' == 'Publish'" /> + + <_CandidateAssetsForPublish + Include="@(StaticWebAsset)" + Condition="'%(AssetKind)' != 'Build'" /> + + + + + + + + + + + + + + + + + + + + <_GZipCompressedStaticWebAssets Include="@(_CompressedStaticWebAssets)" Condition="'%(Format)' == 'gzip'" /> + <_BrotliCompressedStaticWebAssets Include="@(_CompressedStaticWebAssets)" Condition="'%(Format)' == 'brotli'" /> + + + + + + + + + + + + + + + + + + + + + <_GZipCompressedStaticWebAssetsForPublish Include="@(_CompressedStaticWebAssetsForPublish)" Condition="'%(Format)' == 'gzip'" /> + <_BrotliCompressedStaticWebAssetsForPublish Include="@(_CompressedStaticWebAssetsForPublish)" Condition="'%(Format)' == 'brotli'" /> + + + + + + + + + + + + + + + + + + diff --git a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.5_0.targets b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.5_0.targets index 9609dcc738a0..af00dd3e415d 100644 --- a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.5_0.targets +++ b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.5_0.targets @@ -190,7 +190,7 @@ Integration with static web assets: diff --git a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.targets b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.targets index 0e39e884e639..4c1e862eacbe 100644 --- a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.targets +++ b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.ScopedCss.targets @@ -169,7 +169,7 @@ Integration with static web assets: diff --git a/src/StaticWebAssetsSdk/Targets/Sdk.StaticWebAssets.CurrentVersion.targets b/src/StaticWebAssetsSdk/Targets/Sdk.StaticWebAssets.CurrentVersion.targets index 317cb93b0dd1..1fbe9382d922 100644 --- a/src/StaticWebAssetsSdk/Targets/Sdk.StaticWebAssets.CurrentVersion.targets +++ b/src/StaticWebAssetsSdk/Targets/Sdk.StaticWebAssets.CurrentVersion.targets @@ -31,7 +31,8 @@ Copyright (c) .NET Foundation. All rights reserved. <_StaticWebAssetsSdkTasksTFM Condition=" '$(MSBuildRuntimeType)' == 'Core'">net8.0 <_StaticWebAssetsSdkTasksTFM Condition=" '$(_StaticWebAssetsSdkTasksTFM)' == ''">net472 $(StaticWebAssetsSdkBuildTasksDirectoryRoot)$(_StaticWebAssetsSdkTasksTFM)\Microsoft.NET.Sdk.StaticWebAssets.Tasks.dll - <_StaticWebAssetsSdkToolAssembly>$(StaticWebAssetsSdkDirectoryRoot)..\Microsoft.NET.Sdk.Razor\tools\rzc.dll + <_StaticWebAssetsSdkToolAssembly>$(StaticWebAssetsSdkDirectoryRoot)tools\net8.0\Microsoft.NET.Sdk.StaticWebAssets.Tool.dll + <_StaticWebAssetsSdkRazorToolAssembly>$(StaticWebAssetsSdkDirectoryRoot)..\Microsoft.NET.Sdk.Razor\tools\rzc.dll @@ -111,6 +112,8 @@ Copyright (c) .NET Foundation. All rights reserved. $(_TargetingNET50OrLater) $(_TargetingNET60OrLater) + + $(_TargetingNET60OrLater) diff --git a/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs b/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs new file mode 100644 index 000000000000..4a5b8db6e748 --- /dev/null +++ b/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs @@ -0,0 +1,121 @@ +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; +using System.IO; +using System.Linq; +using System.Text; +using Microsoft.Build.Framework; +using Microsoft.Build.Utilities; + +namespace Microsoft.AspNetCore.StaticWebAssets.Tasks +{ + public class BrotliCompress : ToolTask + { + private string _dotnetPath; + + [Required] + public ITaskItem[] FilesToCompress { get; set; } + + [Output] + public ITaskItem[] CompressedFiles { get; set; } + + public string CompressionLevel { get; set; } + + [Required] + public string ToolAssembly { get; set; } + + protected override string ToolName => Path.GetDirectoryName(DotNetPath); + + private string DotNetPath + { + get + { + if (!string.IsNullOrEmpty(_dotnetPath)) + { + return _dotnetPath; + } + + _dotnetPath = Environment.GetEnvironmentVariable("DOTNET_HOST_PATH"); + if (string.IsNullOrEmpty(_dotnetPath)) + { + throw new InvalidOperationException("DOTNET_HOST_PATH is not set"); + } + + return _dotnetPath; + } + } + + private static string Quote(string path) + { + if (string.IsNullOrEmpty(path) || (path[0] == '\"' && path[path.Length - 1] == '\"')) + { + // it's already quoted + return path; + } + + return $"\"{path}\""; + } + + protected override string GenerateCommandLineCommands() => Quote(ToolAssembly); + + protected override string GenerateResponseFileCommands() + { + var builder = new StringBuilder(); + + builder.AppendLine("brotli"); + + if (!string.IsNullOrEmpty(CompressionLevel)) + { + builder.AppendLine("-c"); + builder.AppendLine(CompressionLevel); + } + + var outputDirectories = FilesToCompress + .Select(f => f.GetMetadata("TargetDirectory")) + .Distinct() + .Where(td => !string.IsNullOrWhiteSpace(td)); + + foreach (var outputDirectory in outputDirectories) + { + Directory.CreateDirectory(outputDirectory); + } + + CompressedFiles = new ITaskItem[FilesToCompress.Length]; + + for (var i = 0; i < FilesToCompress.Length; i++) + { + var file = FilesToCompress[i]; + var inputFullPath = file.GetMetadata("RelatedAsset"); + var outputRelativePath = file.ItemSpec; + var outputFullPath = Path.GetFullPath(outputRelativePath); + CompressedFiles[i] = file; + + if (!File.Exists(outputRelativePath)) + { + Log.LogMessage(MessageImportance.Low, "Compressing '{0}' because compressed file '{1}' does not exist.", inputFullPath, outputRelativePath); + } + else if (File.GetLastWriteTimeUtc(inputFullPath) < File.GetLastWriteTimeUtc(outputRelativePath)) + { + // Incrementalism. If input source doesn't exist or it exists and is not newer than the expected output, do nothing. + Log.LogMessage(MessageImportance.Low, "Skipping '{0}' because '{1}' is newer than '{2}'.", inputFullPath, outputRelativePath, inputFullPath); + continue; + } + else + { + Log.LogMessage(MessageImportance.Low, "Compressing '{0}' because file is newer than '{1}'.", inputFullPath, outputRelativePath); + } + + builder.AppendLine("-s"); + builder.AppendLine(Quote(inputFullPath)); + + builder.AppendLine("-o"); + builder.AppendLine(Quote(outputFullPath)); + } + + return builder.ToString(); + } + + protected override string GenerateFullPathToTool() => DotNetPath; + } +} diff --git a/src/StaticWebAssetsSdk/Tasks/GZipCompress.cs b/src/StaticWebAssetsSdk/Tasks/GZipCompress.cs new file mode 100644 index 000000000000..f465bbd02278 --- /dev/null +++ b/src/StaticWebAssetsSdk/Tasks/GZipCompress.cs @@ -0,0 +1,69 @@ +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; +using System.IO; +using System.IO.Compression; +using System.Linq; +using Microsoft.Build.Framework; +using Microsoft.Build.Utilities; + +namespace Microsoft.AspNetCore.StaticWebAssets.Tasks +{ + public class GZipCompress : Task + { + [Required] + public ITaskItem[] FilesToCompress { get; set; } + + public override bool Execute() + { + var outputDirectories = FilesToCompress + .Select(f => f.GetMetadata("TargetDirectory")) + .Distinct() + .Where(td => !string.IsNullOrWhiteSpace(td)); + + foreach (var outputDirectory in outputDirectories) + { + Directory.CreateDirectory(outputDirectory); + } + + System.Threading.Tasks.Parallel.For(0, FilesToCompress.Length, i => + { + var file = FilesToCompress[i]; + var inputFullPath = file.GetMetadata("RelatedAsset"); + var outputRelativePath = file.ItemSpec; + + if (!File.Exists(outputRelativePath)) + { + Log.LogMessage(MessageImportance.Low, "Compressing '{0}' because compressed file '{1}' does not exist.", inputFullPath, outputRelativePath); + } + else if (File.GetLastWriteTimeUtc(inputFullPath) < File.GetLastWriteTimeUtc(outputRelativePath)) + { + // Incrementalism. If input source doesn't exist or it exists and is not newer than the expected output, do nothing. + Log.LogMessage(MessageImportance.Low, "Skipping '{0}' because '{1}' is newer than '{2}'.", inputFullPath, outputRelativePath, inputFullPath); + return; + } + else + { + Log.LogMessage(MessageImportance.Low, "Compressing '{0}' because file is newer than '{1}'.", inputFullPath, outputRelativePath); + } + + try + { + using var sourceStream = File.OpenRead(inputFullPath); + using var fileStream = File.Create(outputRelativePath); + using var stream = new GZipStream(fileStream, CompressionLevel.Optimal); + + sourceStream.CopyTo(stream); + } + catch (Exception e) + { + Log.LogErrorFromException(e); + return; + } + }); + + return !Log.HasLoggedErrors; + } + } +} diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs new file mode 100644 index 000000000000..8bb72f078831 --- /dev/null +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -0,0 +1,266 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Security.Cryptography; +using System.Text; +using Microsoft.Build.Framework; +using Microsoft.Build.Utilities; +using Microsoft.Extensions.FileSystemGlobbing; + +namespace Microsoft.AspNetCore.StaticWebAssets.Tasks; + +public class ResolveCompressedAssets : Task +{ + private static readonly char[] s_invalidPathChars = Path.GetInvalidFileNameChars(); + + public ITaskItem[] CandidateAssets { get; set; } + + public ITaskItem[] CompressionConfigurations { get; set; } + + public ITaskItem[] ExplicitAssets { get; set; } + + [Output] + public ITaskItem[] AssetsToCompress { get; set; } + + public override bool Execute() + { + if (CandidateAssets is null || CompressionConfigurations is null) + { + return true; + } + + var assetsToCompress = new List(); + + // Scan the candidate assets and determine which assets have already been compressed in which formats. + var alreadyCompressedAssetFormatsByItemSpec = new Dictionary>(); + foreach (var asset in CandidateAssets) + { + if (asset.GetMetadata("AssetTraitName") == "Content-Encoding") + { + var assetTraitValue = asset.GetMetadata("AssetTraitValue"); + var relatedAssetItemSpec = asset.GetMetadata("RelatedAsset"); + + if (!alreadyCompressedAssetFormatsByItemSpec.TryGetValue(relatedAssetItemSpec, out var formats)) + { + formats = new(); + alreadyCompressedAssetFormatsByItemSpec.Add(relatedAssetItemSpec, formats); + } + + formats.Add(assetTraitValue); + } + } + + // Generate internal representations of each compression configuration. + var compressionConfigurations = CompressionConfigurations + .Select(CompressionConfiguration.FromTaskItem) + .ToArray(); + var candidateAssetsByConfigurationName = compressionConfigurations + .ToDictionary(cc => cc.ItemSpec, cc => (cc, new List())); + + // Add each explicitly-provided asset as a candidate asset for its specified compression configuration. + if (ExplicitAssets is not null) + { + foreach (var asset in ExplicitAssets) + { + var configurationName = asset.GetMetadata("ConfigurationName"); + if (candidateAssetsByConfigurationName.TryGetValue(configurationName, out var result)) + { + var (configuration, candidateAssets) = result; + var relativePath = StaticWebAsset.ComputeAssetRelativePath(asset, out _); + candidateAssets.Add(new(asset, configuration, relativePath)); + } + } + } + + // Add each candidate asset to each compression configuration with a matching pattern. + foreach (var asset in CandidateAssets) + { + if (asset.GetMetadata("AssetTraitName") == "Content-Encoding") + { + // This is a compressed asset - no need to compress again. + continue; + } + + var relativePath = StaticWebAsset.ComputeAssetRelativePath(asset, out _); + + foreach (var configuration in compressionConfigurations) + { + if (configuration.Matches(relativePath)) + { + var (_, candidateAssets) = candidateAssetsByConfigurationName[configuration.ItemSpec]; + candidateAssets.Add(new(asset, configuration, relativePath)); + } + } + } + + // Process the final set of candidate assets, deduplicating assets compressed in the same format multiple times. + foreach (var configuration in compressionConfigurations) + { + var (_, candidateAssets) = candidateAssetsByConfigurationName[configuration.ItemSpec]; + + foreach (var asset in candidateAssets) + { + var itemSpec = asset.StaticWebAsset.ItemSpec; + if (!alreadyCompressedAssetFormatsByItemSpec.TryGetValue(itemSpec, out var alreadyCompressedFormats)) + { + alreadyCompressedFormats = new(); + } + + var format = configuration.Format; + if (alreadyCompressedFormats.Contains(format)) + { + Log.LogMessage($"Skipping '{itemSpec}' because it was already compressed with format '{format}'"); + continue; + } + + assetsToCompress.Add(asset); + alreadyCompressedFormats.Add(format); + } + } + + // Generate new static web asset definitions for the compressed items. + var compressedAssets = new List(); + + foreach (var asset in assetsToCompress) + { + var staticWebAsset = asset.StaticWebAsset; + var originalItemSpec = staticWebAsset.GetMetadata("OriginalItemSpec"); + compressedAssets.Add(CreateCompressedAsset(asset, originalItemSpec)); + } + + AssetsToCompress = compressedAssets.ToArray(); + + return !Log.HasLoggedErrors; + } + + private TaskItem CreateCompressedAsset(AssetToCompress asset, string originalItemSpec) + { + var originalAsset = asset.StaticWebAsset; + var relativePath = originalAsset.GetMetadata("RelativePath"); + var targetDirectory = asset.CompressionConfiguration.TargetDirectory; + var format = asset.CompressionConfiguration.Format; + + // TODO: Clean up this method. + string fileExtension; + string assetTraitValue; + + if (string.Equals("gzip", format, StringComparison.OrdinalIgnoreCase)) + { + fileExtension = ".gz"; + assetTraitValue = "gzip"; + } + else if (string.Equals("brotli", format, StringComparison.OrdinalIgnoreCase)) + { + fileExtension = ".br"; + assetTraitValue = "br"; + } + else + { + fileExtension = ".gz"; + assetTraitValue = "gzip"; + Log.LogError($"Unknown compression format '{format}'. Defaulting to 'gzip'."); + } + + var outputRelativePath = Path.Combine( + targetDirectory, + CalculateTargetPath(originalItemSpec, fileExtension)); + + var result = new TaskItem(outputRelativePath, originalAsset.CloneCustomMetadata()); + + result.SetMetadata("RelativePath", relativePath + fileExtension); + result.SetMetadata("RelatedAsset", originalAsset.ItemSpec); + result.SetMetadata("OriginalItemSpec", originalAsset.ItemSpec); + result.SetMetadata("AssetRole", "Alternative"); + result.SetMetadata("AssetTraitName", "Content-Encoding"); + result.SetMetadata("AssetTraitValue", assetTraitValue); + result.SetMetadata("TargetDirectory", targetDirectory); + result.SetMetadata("Format", format); + + return result; + } + + private static string CalculateTargetPath(string relativePath, string extension) + { + // RelativePath can be long and if used as-is to write the output, might result in long path issues on Windows. + // Instead we'll calculate a fixed length path by hashing the input file name. This uses SHA1 similar to the Hash task in MSBuild + // since it has no crytographic significance. + using var hash = SHA1.Create(); + var bytes = Encoding.UTF8.GetBytes(relativePath); + var hashString = Convert.ToBase64String(hash.ComputeHash(bytes)); + + var builder = new StringBuilder(); + + for (var i = 0; i < 8; i++) + { + var c = hashString[i]; + builder.Append(s_invalidPathChars.Contains(c) ? '+' : c); + } + + builder.Append(extension); + return builder.ToString(); + } + + private sealed class CompressionConfiguration + { + private readonly Matcher _matcher = new(); + + public string ItemSpec { get; set; } + + public string TargetDirectory { get; } + + public string Format { get; } + + public static CompressionConfiguration FromTaskItem(ITaskItem taskItem) + { + var itemSpec = taskItem.ItemSpec; + var includePattern = taskItem.GetMetadata("IncludePattern"); + var excludePattern = taskItem.GetMetadata("ExcludePattern"); + var targetDirectory = taskItem.GetMetadata("TargetDirectory"); + var format = taskItem.GetMetadata("Format"); + + var includePatterns = SplitPattern(includePattern); + var excludePatterns = SplitPattern(excludePattern); + + return new(itemSpec, includePatterns, excludePatterns, targetDirectory, format); + + static string[] SplitPattern(string pattern) + => pattern + .Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries) + .Select(s => s.Trim()) + .ToArray(); + } + + private CompressionConfiguration(string itemSpec, string[] includePatterns, string[] excludePatterns, string targetDirectory, string format) + { + _matcher.AddIncludePatterns(includePatterns); + _matcher.AddExcludePatterns(excludePatterns); + + ItemSpec = itemSpec; + TargetDirectory = targetDirectory; + Format = format; + } + + public bool Matches(string relativePath) + => _matcher.Match(relativePath).HasMatches; + } + + private sealed class AssetToCompress + { + public ITaskItem StaticWebAsset { get; } + + public string RelativePath { get; } + + public CompressionConfiguration CompressionConfiguration { get; } + + public AssetToCompress(ITaskItem staticWebAsset, CompressionConfiguration compressionConfiguration, string relativePath) + { + StaticWebAsset = staticWebAsset; + CompressionConfiguration = compressionConfiguration; + RelativePath = relativePath; + } + } +} diff --git a/src/StaticWebAssetsSdk/Tool/Microsoft.NET.Sdk.StaticWebAssets.Tool.csproj b/src/StaticWebAssetsSdk/Tool/Microsoft.NET.Sdk.StaticWebAssets.Tool.csproj new file mode 100644 index 000000000000..0d119e2c29a0 --- /dev/null +++ b/src/StaticWebAssetsSdk/Tool/Microsoft.NET.Sdk.StaticWebAssets.Tool.csproj @@ -0,0 +1,15 @@ + + + + Exe + $(SdkTargetFramework) + + false + + + + + + + + diff --git a/src/StaticWebAssetsSdk/Tool/Program.cs b/src/StaticWebAssetsSdk/Tool/Program.cs new file mode 100644 index 000000000000..77b91486e079 --- /dev/null +++ b/src/StaticWebAssetsSdk/Tool/Program.cs @@ -0,0 +1,76 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. +// + +using System; +using System.Collections.Generic; +using System.CommandLine; +using System.CommandLine.Invocation; +using System.CommandLine.Parsing; +using System.IO; +using System.IO.Compression; +using System.Threading.Tasks; + +namespace Microsoft.NET.Sdk.StaticWebAssets.Tool +{ + internal static class Program + { + public static int Main(string[] args) + { + var rootCommand = new RootCommand(); + var brotli = new Command("brotli"); + + var compressionLevelOption = new Option( + "-c", + defaultValueFactory: () => CompressionLevel.SmallestSize, + description: "System.IO.Compression.CompressionLevel for the Brotli compression algorithm."); + var sourcesOption = new Option>( + "-s", + description: "A list of files to compress.") + { + AllowMultipleArgumentsPerToken = false + }; + var outputsOption = new Option>( + "-o", + "The filenames to output the compressed file to.") + { + AllowMultipleArgumentsPerToken = false + }; + + brotli.Add(compressionLevelOption); + brotli.Add(sourcesOption); + brotli.Add(outputsOption); + + rootCommand.Add(brotli); + + brotli.SetHandler((InvocationContext context) => + { + var parseResults = context.ParseResult; + var c = parseResults.GetValue(compressionLevelOption); + var s = parseResults.GetValue(sourcesOption); + var o = parseResults.GetValue(outputsOption); + + Parallel.For(0, s.Count, i => + { + var source = s[i]; + var output = o[i]; + try + { + using var sourceStream = File.OpenRead(source); + using var fileStream = new FileStream(output, FileMode.Create); + + using var stream = new BrotliStream(fileStream, c); + sourceStream.CopyTo(stream); + } + catch (Exception ex) + { + Console.Error.WriteLine($"Error compressing '{source}' into '{output}'"); + Console.Error.WriteLine(ex.ToString()); + } + }); + }); + + return rootCommand.InvokeAsync(args).Result; + } + } +} diff --git a/src/StaticWebAssetsSdk/Tool/runtimeconfig.template.json b/src/StaticWebAssetsSdk/Tool/runtimeconfig.template.json new file mode 100644 index 000000000000..2c73f3989069 --- /dev/null +++ b/src/StaticWebAssetsSdk/Tool/runtimeconfig.template.json @@ -0,0 +1,3 @@ +{ + "rollForwardOnNoCandidateFx": 2 +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs index ef1db84b0e8d..5218a4713130 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs @@ -248,7 +248,7 @@ internal void AssertManifest( DefaultTfm, DefaultPackageVersion); - _comparer.AssertManifest(manifest, expected); + _comparer.AssertManifest(expected, manifest); } else { From e6cdee55df834ec3d16c5d0eab21dae76da410d7 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Thu, 30 Mar 2023 17:01:36 -0700 Subject: [PATCH 02/14] Update Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets --- .../Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets | 1 - 1 file changed, 1 deletion(-) diff --git a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets index 4a2d037ab819..08c4b42970bd 100644 --- a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets +++ b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets @@ -502,7 +502,6 @@ Copyright (c) .NET Foundation. All rights reserved. - <_PublishBlazorBootJson From 3d8884e96d14c3619a597ffba9173a7cad066118 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Fri, 31 Mar 2023 15:11:54 -0700 Subject: [PATCH 03/14] Fix issues caused by merge --- ...soft.NET.Sdk.BlazorWebAssembly.6_0.targets | 48 ++++++++++++++----- ...ET.Sdk.StaticWebAssets.Compression.targets | 15 +++++- ...rosoft.NET.Sdk.WebAssembly.Current.targets | 31 ++++++++++-- 3 files changed, 77 insertions(+), 17 deletions(-) diff --git a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets index d42ddd738a58..565ef61f85f1 100644 --- a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets +++ b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets @@ -60,33 +60,26 @@ Copyright (c) .NET Foundation. All rights reserved. - - $(GenerateStaticWebAssetsPublishManifestDependsOn); - _BlazorCompressPublishFiles; - - $(ResolveCompressedFilesDependsOn); _ResolveBlazorWasmOutputs; - _AddBlazorWasmStaticWebAssets; $(ResolveCompressedFilesForPublishDependsOn); - ProcessPublishFilesForBlazor; - ComputeBlazorExtensions; - _AddPublishBlazorBootJsonToStaticWebAssets; - _CollectAssetsToCompress; + _CollectAssetsToCompressForPublish; $(AddWasmStaticWebAssetsDependsOn); _ResolveBlazorWasmOutputs; + $(GenerateBuildWasmBootJsonDependsOn); GenerateBlazorBootExtensionJson; + $(GeneratePublishWasmBootJsonDependsOn); GenerateBlazorBootExtensionJson; @@ -166,6 +159,10 @@ Copyright (c) .NET Foundation. All rights reserved. > + + + + @@ -173,7 +170,23 @@ Copyright (c) .NET Foundation. All rights reserved. - + + + + BlazorPublishGzip + + + + BlazorPublishBrotli + + + + + + <_BlazorBuildBootExtensionJsonPath>$(IntermediateOutputPath)blazor.boot-extension.json + + + + + + + + + + diff --git a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets index 85a78e2ce420..ce002eea4823 100644 --- a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets +++ b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets @@ -19,10 +19,17 @@ Copyright (c) .NET Foundation. All rights reserved. $(ResolveCompressedFilesDependsOn) $(ResolveCompressedFilesForPublishDependsOn) + $(CompressFilesDependsOn) + $(CompressFilesForPublishDependsOn) + + $(GenerateStaticWebAssetsPublishManifestDependsOn); + _CompressFilesForPublish; + + $(StaticWebAssetsPrepareForRunDependsOn); _CompressFiles; @@ -106,7 +113,9 @@ Copyright (c) .NET Foundation. All rights reserved. - + <_GZipCompressedStaticWebAssets Include="@(_CompressedStaticWebAssets)" Condition="'%(Format)' == 'gzip'" /> @@ -132,7 +141,9 @@ Copyright (c) .NET Foundation. All rights reserved. - + <_GZipCompressedStaticWebAssetsForPublish Include="@(_CompressedStaticWebAssetsForPublish)" Condition="'%(Format)' == 'gzip'" /> diff --git a/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets b/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets index deeaeb3cf82f..45085b88e4a8 100644 --- a/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets +++ b/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets @@ -103,6 +103,29 @@ Copyright (c) .NET Foundation. All rights reserved. GeneratePublishWasmBootJson; + + $(ResolveCompressedFilesDependsOn); + ResolveWasmOutputs; + _AddWasmStaticWebAssets; + + + + $(ResolveCompressedFilesForPublishDependsOn); + ProcessPublishFilesForWasm; + ComputeWasmExtensions; + _AddPublishWasmBootJsonToStaticWebAssets; + + + + $(CompressFilesDependsOn) + _GenerateBuildWasmBootJson; + + + + $(CompressFilesForPublishDependsOn); + GeneratePublishWasmBootJson; + + $(AddWasmStaticWebAssetsDependsOn); ResolveWasmOutputs; @@ -125,7 +148,7 @@ Copyright (c) .NET Foundation. All rights reserved. - + @@ -352,15 +375,15 @@ Copyright (c) .NET Foundation. All rights reserved. - - From aa7fffeaacdd1db57c54072d7f475342fb262a4b Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Fri, 31 Mar 2023 16:22:05 -0700 Subject: [PATCH 04/14] PR feedback --- ...osoft.NET.Sdk.StaticWebAssets.Tasks.csproj | 3 +++ .../Tasks/ResolveCompressedAssets.cs | 27 +++---------------- 2 files changed, 6 insertions(+), 24 deletions(-) diff --git a/src/StaticWebAssetsSdk/Tasks/Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj b/src/StaticWebAssetsSdk/Tasks/Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj index e8541a00012b..8fe086a4e209 100644 --- a/src/StaticWebAssetsSdk/Tasks/Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj +++ b/src/StaticWebAssetsSdk/Tasks/Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj @@ -63,6 +63,9 @@ Shared\DotnetToolTask.cs + + Shared\FileHasher.cs + diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs index 8bb72f078831..2d698b1f5150 100644 --- a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -10,6 +10,7 @@ using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Microsoft.Extensions.FileSystemGlobbing; +using Microsoft.NET.Sdk.WebAssembly; namespace Microsoft.AspNetCore.StaticWebAssets.Tasks; @@ -165,9 +166,8 @@ private TaskItem CreateCompressedAsset(AssetToCompress asset, string originalIte Log.LogError($"Unknown compression format '{format}'. Defaulting to 'gzip'."); } - var outputRelativePath = Path.Combine( - targetDirectory, - CalculateTargetPath(originalItemSpec, fileExtension)); + var fileName = FileHasher.GetFileHash(originalItemSpec) + fileExtension; + var outputRelativePath = Path.Combine(targetDirectory, fileName); var result = new TaskItem(outputRelativePath, originalAsset.CloneCustomMetadata()); @@ -183,27 +183,6 @@ private TaskItem CreateCompressedAsset(AssetToCompress asset, string originalIte return result; } - private static string CalculateTargetPath(string relativePath, string extension) - { - // RelativePath can be long and if used as-is to write the output, might result in long path issues on Windows. - // Instead we'll calculate a fixed length path by hashing the input file name. This uses SHA1 similar to the Hash task in MSBuild - // since it has no crytographic significance. - using var hash = SHA1.Create(); - var bytes = Encoding.UTF8.GetBytes(relativePath); - var hashString = Convert.ToBase64String(hash.ComputeHash(bytes)); - - var builder = new StringBuilder(); - - for (var i = 0; i < 8; i++) - { - var c = hashString[i]; - builder.Append(s_invalidPathChars.Contains(c) ? '+' : c); - } - - builder.Append(extension); - return builder.ToString(); - } - private sealed class CompressionConfiguration { private readonly Matcher _matcher = new(); From 609887dc4fc0b0dc9aeefd45bff68077764bd4bd Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Mon, 3 Apr 2023 10:23:32 -0700 Subject: [PATCH 05/14] Fix some CI failures --- ...osoft.NET.Sdk.StaticWebAssets.Compression.targets | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets index ce002eea4823..f6f6d00274d9 100644 --- a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets +++ b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets @@ -125,6 +125,12 @@ Copyright (c) .NET Foundation. All rights reserved. + + <_DotNetHostDirectory>$(NetCoreRoot) + <_DotNetHostFileName>dotnet + <_DotNetHostFileName Condition="'$(OS)' == 'Windows_NT'">dotnet.exe + + + + <_DotNetHostDirectory>$(NetCoreRoot) + <_DotNetHostFileName>dotnet + <_DotNetHostFileName Condition="'$(OS)' == 'Windows_NT'">dotnet.exe + + Date: Mon, 3 Apr 2023 10:37:43 -0700 Subject: [PATCH 06/14] Update source-build.slnf --- source-build.slnf | 1 + 1 file changed, 1 insertion(+) diff --git a/source-build.slnf b/source-build.slnf index a1cfd81fadd2..b99b2db87f9d 100644 --- a/source-build.slnf +++ b/source-build.slnf @@ -35,6 +35,7 @@ "src\\Resolvers\\Microsoft.NET.Sdk.WorkloadManifestReader\\Microsoft.NET.Sdk.WorkloadManifestReader.csproj", "src\\Resolvers\\WorkloadManifestValidator\\WorkloadManifestValidator.csproj", "src\\StaticWebAssetsSdk\\Tasks\\Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj", + "src\\StaticWebAssetsSdk\\Tool\\Microsoft.NET.Sdk.StaticWebAssets.Tool.csproj", "src\\Tasks\\Microsoft.NET.Build.Extensions.Tasks\\Microsoft.NET.Build.Extensions.Tasks.csproj", "src\\Tasks\\Microsoft.NET.Build.Tasks\\Microsoft.NET.Build.Tasks.csproj", "src\\WebSdk\\ProjectSystem\\Tasks\\Microsoft.NET.Sdk.Web.ProjectSystem.Tasks.csproj", From 89bd08d01d32b73ad7b3c34d10c4c9ed12b74a1b Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Mon, 3 Apr 2023 11:49:19 -0700 Subject: [PATCH 07/14] PR feedback --- ...soft.NET.Sdk.BlazorWebAssembly.6_0.targets | 7 -- ...ET.Sdk.StaticWebAssets.Compression.targets | 14 +-- .../Tasks/ResolveCompressedAssets.cs | 90 ++++++++++++++++--- 3 files changed, 87 insertions(+), 24 deletions(-) diff --git a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets index 565ef61f85f1..be9fe9693054 100644 --- a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets +++ b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets @@ -86,11 +86,6 @@ Copyright (c) .NET Foundation. All rights reserved. - - <_BlazorBuildGZipCompressDirectory>$(IntermediateOutputPath)build-gz\ - <_BlazorPublishCompressDirectory>$(IntermediateOutputPath)compress\ - - @@ -170,7 +172,9 @@ Copyright (c) .NET Foundation. All rights reserved. + ToolAssembly="$(_StaticWebAssetsSdkToolAssembly)" + ToolExe="$(_DotNetHostFileName)" + ToolPath="$(_DotNetHostDirectory)"> diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs index b8beaa78bc86..f76df5a7f62b 100644 --- a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -114,7 +114,7 @@ public override bool Execute() var format = configuration.Format; if (alreadyCompressedFormats.Contains(format)) { - Log.LogMessage($"Skipping '{itemSpec}' because it was already compressed with format '{format}'"); + Log.LogMessage($"Skipping '{itemSpec}' because it was already compressed with format '{format}'."); continue; } @@ -128,9 +128,10 @@ public override bool Execute() foreach (var asset in assetsToCompress) { - var staticWebAsset = asset.StaticWebAsset; - var originalItemSpec = staticWebAsset.GetMetadata("OriginalItemSpec"); - compressedAssets.Add(CreateCompressedAsset(asset, originalItemSpec)); + if (CreateCompressedAsset(asset) is { } result) + { + compressedAssets.Add(result); + } } AssetsToCompress = compressedAssets.ToArray(); @@ -138,32 +139,31 @@ public override bool Execute() return !Log.HasLoggedErrors; } - private TaskItem CreateCompressedAsset(AssetToCompress asset, string originalItemSpec) + private ITaskItem CreateCompressedAsset(AssetToCompress asset) { var originalAsset = asset.StaticWebAsset; + var originalItemSpec = originalAsset.GetMetadata("OriginalItemSpec"); var relativePath = originalAsset.GetMetadata("RelativePath"); var targetDirectory = asset.CompressionConfiguration.ComputeOutputPath(OutputBasePath); var format = asset.CompressionConfiguration.Format; - // TODO: Clean up this method. string fileExtension; string assetTraitValue; - if (string.Equals("gzip", format, StringComparison.OrdinalIgnoreCase)) + if (CompressionFormat.IsGzip(format)) { fileExtension = ".gz"; assetTraitValue = "gzip"; } - else if (string.Equals("brotli", format, StringComparison.OrdinalIgnoreCase)) + else if (CompressionFormat.IsBrotli(format)) { fileExtension = ".br"; assetTraitValue = "br"; } else { - fileExtension = ".gz"; - assetTraitValue = "gzip"; - Log.LogError($"Unknown compression format '{format}'. Defaulting to 'gzip'."); + Log.LogError($"Unknown compression format '{format}' for '{asset.StaticWebAsset.ItemSpec}'. Skipping compression."); + return null; } var fileName = FileHasher.GetFileHash(originalItemSpec) + fileExtension; From 57ca089884c159c5bd87f78f97c2f06db263ee73 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Mon, 3 Apr 2023 15:54:50 -0700 Subject: [PATCH 09/14] Fix build failures + add logging --- ...ET.Sdk.StaticWebAssets.Compression.targets | 22 +- .../Tasks/BrotliCompress.cs | 6 - .../Tasks/ResolveCompressedAssets.cs | 220 +++++++++++------- 3 files changed, 145 insertions(+), 103 deletions(-) diff --git a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets index 73f59b7f3dc0..4a6e1b3f4e64 100644 --- a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets +++ b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets @@ -138,16 +138,11 @@ Copyright (c) .NET Foundation. All rights reserved. CompressionLevel="$(_BlazorBrotliCompressionLevel)" ToolAssembly="$(_StaticWebAssetsSdkToolAssembly)" ToolExe="$(_DotNetHostFileName)" - ToolPath="$(_DotNetHostDirectory)"> - - - - - - + ToolPath="$(_DotNetHostDirectory)" /> - + + @@ -174,16 +169,11 @@ Copyright (c) .NET Foundation. All rights reserved. CompressionLevel="$(_BlazorBrotliCompressionLevel)" ToolAssembly="$(_StaticWebAssetsSdkToolAssembly)" ToolExe="$(_DotNetHostFileName)" - ToolPath="$(_DotNetHostDirectory)"> - - - - - - + ToolPath="$(_DotNetHostDirectory)" /> - + + diff --git a/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs b/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs index 4a5b8db6e748..496fed4e0a89 100644 --- a/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs +++ b/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs @@ -17,9 +17,6 @@ public class BrotliCompress : ToolTask [Required] public ITaskItem[] FilesToCompress { get; set; } - [Output] - public ITaskItem[] CompressedFiles { get; set; } - public string CompressionLevel { get; set; } [Required] @@ -81,15 +78,12 @@ protected override string GenerateResponseFileCommands() Directory.CreateDirectory(outputDirectory); } - CompressedFiles = new ITaskItem[FilesToCompress.Length]; - for (var i = 0; i < FilesToCompress.Length; i++) { var file = FilesToCompress[i]; var inputFullPath = file.GetMetadata("RelatedAsset"); var outputRelativePath = file.ItemSpec; var outputFullPath = Path.GetFullPath(outputRelativePath); - CompressedFiles[i] = file; if (!File.Exists(outputRelativePath)) { diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs index f76df5a7f62b..4d95043b6443 100644 --- a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -5,7 +5,6 @@ using System.Collections.Generic; using System.IO; using System.Linq; -using System.Text; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using Microsoft.Extensions.FileSystemGlobbing; @@ -29,29 +28,57 @@ public class ResolveCompressedAssets : Task public override bool Execute() { - if (CandidateAssets is null || CompressionConfigurations is null) + if (CandidateAssets is null) { + Log.LogMessage( + MessageImportance.Low, + "Skipping task '{0}' because no candidate assets for compression were specified.", + nameof(ResolveCompressedAssets)); return true; } - var assetsToCompress = new List(); + if (CompressionConfigurations is null) + { + Log.LogMessage( + MessageImportance.Low, + "Skipping task '{0}' because no compression configurations were specified.", + nameof(ResolveCompressedAssets)); + return true; + } - // Scan the candidate assets and determine which assets have already been compressed in which formats. - var alreadyCompressedAssetFormatsByItemSpec = new Dictionary>(); + // Scan the provided candidate assets and determine which ones have already been compressed and in which formats. + var existingCompressionFormatsByAssetItemSpec = new Dictionary>(); foreach (var asset in CandidateAssets) { - if (asset.GetMetadata("AssetTraitName") == "Content-Encoding") + if (IsCompressedAsset(asset)) { - var assetTraitValue = asset.GetMetadata("AssetTraitValue"); var relatedAssetItemSpec = asset.GetMetadata("RelatedAsset"); - if (!alreadyCompressedAssetFormatsByItemSpec.TryGetValue(relatedAssetItemSpec, out var formats)) + if (string.IsNullOrEmpty(relatedAssetItemSpec)) + { + Log.LogError( + "The asset '{0}' was detected as compressed but didn't specify a related asset.", + asset.ItemSpec); + continue; + } + + if (!existingCompressionFormatsByAssetItemSpec.TryGetValue(relatedAssetItemSpec, out var existingFormats)) + { + existingFormats = new(); + existingCompressionFormatsByAssetItemSpec.Add(relatedAssetItemSpec, existingFormats); + } + + var compressionFormat = asset.GetMetadata("AssetTraitValue"); + + if (!CompressionFormat.IsValidCompressionFormat(compressionFormat)) { - formats = new(); - alreadyCompressedAssetFormatsByItemSpec.Add(relatedAssetItemSpec, formats); + Log.LogError( + "The asset '{0}' has an unknown compression format '{1}'.", + asset.ItemSpec, + compressionFormat); } - formats.Add(assetTraitValue); + existingFormats.Add(compressionFormat); } } @@ -60,7 +87,7 @@ public override bool Execute() .Select(CompressionConfiguration.FromTaskItem) .ToArray(); var candidateAssetsByConfigurationName = compressionConfigurations - .ToDictionary(cc => cc.ItemSpec, cc => (cc, new List())); + .ToDictionary(cc => cc.ItemSpec, _ => new List()); // Add each explicitly-provided asset as a candidate asset for its specified compression configuration. if (ExplicitAssets is not null) @@ -68,11 +95,20 @@ public override bool Execute() foreach (var asset in ExplicitAssets) { var configurationName = asset.GetMetadata("ConfigurationName"); - if (candidateAssetsByConfigurationName.TryGetValue(configurationName, out var result)) + if (candidateAssetsByConfigurationName.TryGetValue(configurationName, out var candidateAssets)) + { + candidateAssets.Add(asset); + Log.LogMessage( + "Explicitly-specified compressed asset '{0}' matches known compression configuration '{1}'.", + asset.ItemSpec, + configurationName); + } + else { - var (configuration, candidateAssets) = result; - var relativePath = StaticWebAsset.ComputeAssetRelativePath(asset, out _); - candidateAssets.Add(new(asset, configuration, relativePath)); + Log.LogError( + "Explicitly-specified compressed asset '{0}' has an unknown compression configuration '{1}'.", + asset.ItemSpec, + configurationName); } } } @@ -80,33 +116,59 @@ public override bool Execute() // Add each candidate asset to each compression configuration with a matching pattern. foreach (var asset in CandidateAssets) { - if (asset.GetMetadata("AssetTraitName") == "Content-Encoding") + if (IsCompressedAsset(asset)) { - // This is a compressed asset - no need to compress again. + Log.LogMessage( + MessageImportance.Low, + "Ignoring asset '{0}' for compression because it is already compressed.", + asset.ItemSpec); continue; } - var relativePath = StaticWebAsset.ComputeAssetRelativePath(asset, out _); + var relativePath = asset.GetMetadata("RelativePath"); foreach (var configuration in compressionConfigurations) { if (configuration.Matches(relativePath)) { - var (_, candidateAssets) = candidateAssetsByConfigurationName[configuration.ItemSpec]; - candidateAssets.Add(new(asset, configuration, relativePath)); + var candidateAssets = candidateAssetsByConfigurationName[configuration.ItemSpec]; + candidateAssets.Add(asset); + + Log.LogMessage( + MessageImportance.Low, + "Asset '{0}' with relative path '{1}' matched compression configuration '{2}' with include pattern '{3}' and exclude pattern '{4}'.", + asset.ItemSpec, + relativePath, + configuration.ItemSpec, + configuration.IncludePattern, + configuration.ExcludePattern); + } + else + { + Log.LogMessage( + MessageImportance.Low, + "Asset '{0}' with relative path '{1}' did not match compression configuration '{2}' with include pattern '{3}' and exclude pattern '{4}'.", + asset.ItemSpec, + relativePath, + configuration.ItemSpec, + configuration.IncludePattern, + configuration.ExcludePattern); } } } - // Process the final set of candidate assets, deduplicating assets compressed in the same format multiple times. + // Process the final set of candidate assets, deduplicating assets compressed in the same format multiple times and + // generating new a static web asset definition for each compressed item. + var compressedAssets = new List(); foreach (var configuration in compressionConfigurations) { - var (_, candidateAssets) = candidateAssetsByConfigurationName[configuration.ItemSpec]; + var candidateAssets = candidateAssetsByConfigurationName[configuration.ItemSpec]; + var targetDirectory = configuration.ComputeOutputPath(OutputBasePath); foreach (var asset in candidateAssets) { - var itemSpec = asset.StaticWebAsset.ItemSpec; - if (!alreadyCompressedAssetFormatsByItemSpec.TryGetValue(itemSpec, out var alreadyCompressedFormats)) + var itemSpec = asset.ItemSpec; + if (!existingCompressionFormatsByAssetItemSpec.TryGetValue(itemSpec, out var alreadyCompressedFormats)) { alreadyCompressedFormats = new(); } @@ -114,23 +176,28 @@ public override bool Execute() var format = configuration.Format; if (alreadyCompressedFormats.Contains(format)) { - Log.LogMessage($"Skipping '{itemSpec}' because it was already compressed with format '{format}'."); + Log.LogMessage( + "Ignoring asset '{0}' because it was already compressed with format '{1}'.", + itemSpec, + format); continue; } - assetsToCompress.Add(asset); - alreadyCompressedFormats.Add(format); - } - } - - // Generate new static web asset definitions for the compressed items. - var compressedAssets = new List(); + if (TryCreateCompressedAsset(asset, targetDirectory, configuration.Format, out var compressedAsset)) + { + compressedAssets.Add(compressedAsset); + alreadyCompressedFormats.Add(format); - foreach (var asset in assetsToCompress) - { - if (CreateCompressedAsset(asset) is { } result) - { - compressedAssets.Add(result); + Log.LogMessage( + "Created compressed asset '{0}'.", + compressedAsset.ItemSpec); + } + else + { + Log.LogError( + "Could not create compressed asset for original asset '{0}'.", + itemSpec); + } } } @@ -139,14 +206,11 @@ public override bool Execute() return !Log.HasLoggedErrors; } - private ITaskItem CreateCompressedAsset(AssetToCompress asset) - { - var originalAsset = asset.StaticWebAsset; - var originalItemSpec = originalAsset.GetMetadata("OriginalItemSpec"); - var relativePath = originalAsset.GetMetadata("RelativePath"); - var targetDirectory = asset.CompressionConfiguration.ComputeOutputPath(OutputBasePath); - var format = asset.CompressionConfiguration.Format; + private static bool IsCompressedAsset(ITaskItem asset) + => string.Equals("Content-Encoding", asset.GetMetadata("AssetTraitName")); + private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, string format, out TaskItem result) + { string fileExtension; string assetTraitValue; @@ -162,24 +226,28 @@ private ITaskItem CreateCompressedAsset(AssetToCompress asset) } else { - Log.LogError($"Unknown compression format '{format}' for '{asset.StaticWebAsset.ItemSpec}'. Skipping compression."); - return null; + Log.LogError($"Unknown compression format '{format}' for '{asset.ItemSpec}'."); + result = null; + return false; } + var originalItemSpec = asset.GetMetadata("OriginalItemSpec"); + var relativePath = asset.GetMetadata("RelativePath"); + var fileName = FileHasher.GetFileHash(originalItemSpec) + fileExtension; var outputRelativePath = Path.Combine(targetDirectory, fileName); - var result = new TaskItem(outputRelativePath, originalAsset.CloneCustomMetadata()); + result = new TaskItem(outputRelativePath, asset.CloneCustomMetadata()); result.SetMetadata("RelativePath", relativePath + fileExtension); - result.SetMetadata("RelatedAsset", originalAsset.ItemSpec); - result.SetMetadata("OriginalItemSpec", originalAsset.ItemSpec); + result.SetMetadata("RelatedAsset", asset.ItemSpec); + result.SetMetadata("OriginalItemSpec", asset.ItemSpec); result.SetMetadata("AssetRole", "Alternative"); result.SetMetadata("AssetTraitName", "Content-Encoding"); result.SetMetadata("AssetTraitValue", assetTraitValue); result.SetMetadata("TargetDirectory", targetDirectory); - return result; + return true; } private static class BuildStage @@ -212,6 +280,10 @@ private sealed class CompressionConfiguration public string ItemSpec { get; set; } + public string IncludePattern { get; set; } + + public string ExcludePattern { get; set; } + public string Format { get; } public string Stage { get; } @@ -224,9 +296,6 @@ public static CompressionConfiguration FromTaskItem(ITaskItem taskItem) var format = taskItem.GetMetadata("Format"); var stage = taskItem.GetMetadata("Stage"); - var includePatterns = SplitPattern(includePattern); - var excludePatterns = SplitPattern(excludePattern); - if (!CompressionFormat.IsValidCompressionFormat(format)) { throw new InvalidOperationException($"Unknown compression format '{format}' for the compression configuration '{itemSpec}'."); @@ -237,23 +306,27 @@ public static CompressionConfiguration FromTaskItem(ITaskItem taskItem) throw new InvalidOperationException($"Unknown build stage '{stage}' for the compression configuration '{itemSpec}'."); } - return new(itemSpec, includePatterns, excludePatterns, format, stage); - - static string[] SplitPattern(string pattern) - => pattern - .Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries) - .Select(s => s.Trim()) - .ToArray(); + return new(itemSpec, includePattern, excludePattern, format, stage); } - private CompressionConfiguration(string itemSpec, string[] includePatterns, string[] excludePatterns, string format, string stage) + private CompressionConfiguration(string itemSpec, string includePattern, string excludePattern, string format, string stage) { - _matcher.AddIncludePatterns(includePatterns); - _matcher.AddExcludePatterns(excludePatterns); - ItemSpec = itemSpec; + IncludePattern = includePattern; + ExcludePattern = excludePattern; Format = format; Stage = stage; + + var includePatterns = SplitPattern(includePattern); + var excludePatterns = SplitPattern(excludePattern); + _matcher.AddIncludePatterns(includePatterns); + _matcher.AddExcludePatterns(excludePatterns); + + static string[] SplitPattern(string pattern) + => pattern + .Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries) + .Select(s => s.Trim()) + .ToArray(); } public string ComputeOutputPath(string outputBasePath) @@ -267,6 +340,7 @@ public string ComputeOutputPath(string outputBasePath) string ComputeOutputSubdirectory() { + // TODO: Let's change the output directory to be compressed\[publish]\ if (BuildStage.IsBuild(Stage)) { if (CompressionFormat.IsGzip(Format)) @@ -294,20 +368,4 @@ string ComputeOutputSubdirectory() public bool Matches(string relativePath) => _matcher.Match(relativePath).HasMatches; } - - private sealed class AssetToCompress - { - public ITaskItem StaticWebAsset { get; } - - public string RelativePath { get; } - - public CompressionConfiguration CompressionConfiguration { get; } - - public AssetToCompress(ITaskItem staticWebAsset, CompressionConfiguration compressionConfiguration, string relativePath) - { - StaticWebAsset = staticWebAsset; - CompressionConfiguration = compressionConfiguration; - RelativePath = relativePath; - } - } } From b79678d05f0dd6cc09f2c7197ea9f0423ef040f1 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Tue, 4 Apr 2023 17:01:57 -0700 Subject: [PATCH 10/14] Fix test failures --- ...ET.Sdk.StaticWebAssets.Compression.targets | 8 +++- .../Tasks/AssetToCompress.cs | 42 +++++++++++++++++++ .../Tasks/BrotliCompress.cs | 13 ++++-- src/StaticWebAssetsSdk/Tasks/GZipCompress.cs | 13 ++++-- .../Tasks/ResolveCompressedAssets.cs | 16 ++++--- 5 files changed, 76 insertions(+), 16 deletions(-) create mode 100644 src/StaticWebAssetsSdk/Tasks/AssetToCompress.cs diff --git a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets index 4a6e1b3f4e64..2ed0a8fe84c5 100644 --- a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets +++ b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets @@ -19,7 +19,10 @@ Copyright (c) .NET Foundation. All rights reserved. $(ResolveCompressedFilesDependsOn) $(ResolveCompressedFilesForPublishDependsOn) - $(CompressFilesDependsOn) + + $(CompressFilesDependsOn); + CopyStaticWebAssetsToOutputDirectory; + $(CompressFilesForPublishDependsOn) @@ -117,7 +120,8 @@ Copyright (c) .NET Foundation. All rights reserved. + DependsOnTargets="$(CompressFilesDependsOn)" + BeforeTargets="_SplitStaticWebAssetsByCopyOptions"> <_GZipCompressedStaticWebAssets Include="@(_CompressedStaticWebAssets)" Condition="'%(AssetTraitName)' == 'Content-Encoding' and '%(AssetTraitValue)' == 'gzip'" /> diff --git a/src/StaticWebAssetsSdk/Tasks/AssetToCompress.cs b/src/StaticWebAssetsSdk/Tasks/AssetToCompress.cs new file mode 100644 index 000000000000..52c27c0503c7 --- /dev/null +++ b/src/StaticWebAssetsSdk/Tasks/AssetToCompress.cs @@ -0,0 +1,42 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. +// + +using System.IO; +using Microsoft.Build.Framework; +using Microsoft.Build.Utilities; + +namespace Microsoft.AspNetCore.StaticWebAssets.Tasks; + +internal static class AssetToCompress +{ + public static bool TryFindInputFilePath(ITaskItem assetToCompress, TaskLoggingHelper log, out string fullPath) + { + var originalAssetPath = assetToCompress.GetMetadata("OriginalAsset"); + if (File.Exists(originalAssetPath)) + { + log.LogMessage(MessageImportance.Low, "Asset '{0}' found at original asset path '{1}'.", + assetToCompress.ItemSpec, + originalAssetPath); + fullPath = originalAssetPath; + return true; + } + + var relatedAssetPath = assetToCompress.GetMetadata("RelatedAsset"); + if (File.Exists(relatedAssetPath)) + { + log.LogMessage(MessageImportance.Low, "Asset '{0}' found at related asset path '{1}'.", + assetToCompress.ItemSpec, + relatedAssetPath); + fullPath = relatedAssetPath; + return true; + } + + log.LogError("The asset '{0}' can not be found at any of the searched locations '{1}' and '{2}'.", + assetToCompress.ItemSpec, + originalAssetPath, + relatedAssetPath); + fullPath = null; + return false; + } +} diff --git a/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs b/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs index 496fed4e0a89..69f8ee130818 100644 --- a/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs +++ b/src/StaticWebAssetsSdk/Tasks/BrotliCompress.cs @@ -69,22 +69,27 @@ protected override string GenerateResponseFileCommands() } var outputDirectories = FilesToCompress - .Select(f => f.GetMetadata("TargetDirectory")) - .Distinct() - .Where(td => !string.IsNullOrWhiteSpace(td)); + .Select(f => Path.GetDirectoryName(f.ItemSpec)) + .Where(td => !string.IsNullOrWhiteSpace(td)) + .Distinct(); foreach (var outputDirectory in outputDirectories) { Directory.CreateDirectory(outputDirectory); + Log.LogMessage(MessageImportance.Low, "Created directory '{0}'.", outputDirectory); } for (var i = 0; i < FilesToCompress.Length; i++) { var file = FilesToCompress[i]; - var inputFullPath = file.GetMetadata("RelatedAsset"); var outputRelativePath = file.ItemSpec; var outputFullPath = Path.GetFullPath(outputRelativePath); + if (!AssetToCompress.TryFindInputFilePath(file, Log, out var inputFullPath)) + { + continue; + } + if (!File.Exists(outputRelativePath)) { Log.LogMessage(MessageImportance.Low, "Compressing '{0}' because compressed file '{1}' does not exist.", inputFullPath, outputRelativePath); diff --git a/src/StaticWebAssetsSdk/Tasks/GZipCompress.cs b/src/StaticWebAssetsSdk/Tasks/GZipCompress.cs index f465bbd02278..8f1caf05fcda 100644 --- a/src/StaticWebAssetsSdk/Tasks/GZipCompress.cs +++ b/src/StaticWebAssetsSdk/Tasks/GZipCompress.cs @@ -18,20 +18,25 @@ public class GZipCompress : Task public override bool Execute() { var outputDirectories = FilesToCompress - .Select(f => f.GetMetadata("TargetDirectory")) - .Distinct() - .Where(td => !string.IsNullOrWhiteSpace(td)); + .Select(f => Path.GetDirectoryName(f.ItemSpec)) + .Where(td => !string.IsNullOrWhiteSpace(td)) + .Distinct(); foreach (var outputDirectory in outputDirectories) { Directory.CreateDirectory(outputDirectory); + Log.LogMessage(MessageImportance.Low, "Created directory '{0}'.", outputDirectory); } System.Threading.Tasks.Parallel.For(0, FilesToCompress.Length, i => { var file = FilesToCompress[i]; - var inputFullPath = file.GetMetadata("RelatedAsset"); var outputRelativePath = file.ItemSpec; + + if (!AssetToCompress.TryFindInputFilePath(file, Log, out var inputFullPath)) + { + return; + } if (!File.Exists(outputRelativePath)) { diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs index 4d95043b6443..4084580542ed 100644 --- a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -46,7 +46,7 @@ public override bool Execute() return true; } - // Scan the provided candidate assets and determine which ones have already been compressed and in which formats. + // Scan the provided candidate assets and determine which ones have already been detected for compression and in which formats. var existingCompressionFormatsByAssetItemSpec = new Dictionary>(); foreach (var asset in CandidateAssets) { @@ -157,7 +157,7 @@ public override bool Execute() } } - // Process the final set of candidate assets, deduplicating assets compressed in the same format multiple times and + // Process the final set of candidate assets, deduplicating assets to be compressed in the same format multiple times and // generating new a static web asset definition for each compressed item. var compressedAssets = new List(); foreach (var configuration in compressionConfigurations) @@ -177,7 +177,7 @@ public override bool Execute() if (alreadyCompressedFormats.Contains(format)) { Log.LogMessage( - "Ignoring asset '{0}' because it was already compressed with format '{1}'.", + "Ignoring asset '{0}' because it was already resolved with format '{1}'.", itemSpec, format); continue; @@ -211,6 +211,8 @@ private static bool IsCompressedAsset(ITaskItem asset) private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, string format, out TaskItem result) { + result = null; + string fileExtension; string assetTraitValue; @@ -226,8 +228,10 @@ private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, s } else { - Log.LogError($"Unknown compression format '{format}' for '{asset.ItemSpec}'."); - result = null; + Log.LogError( + "Unknown compression format '{0}' for '{1}'.", + format, + asset.ItemSpec); return false; } @@ -242,10 +246,10 @@ private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, s result.SetMetadata("RelativePath", relativePath + fileExtension); result.SetMetadata("RelatedAsset", asset.ItemSpec); result.SetMetadata("OriginalItemSpec", asset.ItemSpec); + result.SetMetadata("OriginalAsset", originalItemSpec); result.SetMetadata("AssetRole", "Alternative"); result.SetMetadata("AssetTraitName", "Content-Encoding"); result.SetMetadata("AssetTraitValue", assetTraitValue); - result.SetMetadata("TargetDirectory", targetDirectory); return true; } From 0f7c2775cde21e99dcf9899b310d3e896cfb6967 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Wed, 5 Apr 2023 14:43:52 -0700 Subject: [PATCH 11/14] Cleanup + add unit tests --- .../Tasks/ComputeBlazorFilesToCompress.cs | 79 ----- .../Tasks/AssetToCompress.cs | 24 +- .../Tasks/CompressionConfiguration.cs | 145 ++++++++ .../Tasks/ResolveCompressedAssets.cs | 145 +------- .../ComputeBlazorFilesToCompressTest.cs | 124 ------- .../ResolveCompressedAssetsTest.cs | 325 ++++++++++++++++++ 6 files changed, 495 insertions(+), 347 deletions(-) delete mode 100644 src/BlazorWasmSdk/Tasks/ComputeBlazorFilesToCompress.cs create mode 100644 src/StaticWebAssetsSdk/Tasks/CompressionConfiguration.cs delete mode 100644 src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ComputeBlazorFilesToCompressTest.cs create mode 100644 src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs diff --git a/src/BlazorWasmSdk/Tasks/ComputeBlazorFilesToCompress.cs b/src/BlazorWasmSdk/Tasks/ComputeBlazorFilesToCompress.cs deleted file mode 100644 index 2b96c7c7c4dd..000000000000 --- a/src/BlazorWasmSdk/Tasks/ComputeBlazorFilesToCompress.cs +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright (c) .NET Foundation and contributors. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -// - -using System.Collections.Generic; -using System.IO; -using Microsoft.Build.Framework; -using Microsoft.Build.Utilities; - -namespace Microsoft.NET.Sdk.BlazorWebAssembly -{ - // During the blazor build process some assets might not be at their final location by the time we try to compress them. - // For that reason we need to determine the path to use to compress the file, which is what this task deals with. - // We first check on the OriginalItemSpec of the asset and use that if the asset exists there. - // In case it does not, we rely use the ItemSpec, which in case OriginalItemSpec does not exist, should point to an existing file on disk. - // If neither the ItemSpec nor the OriginalItemSpec exist, we issue an error, since it indicates that the asset is not correctly - // defined. - // We can't just use the ItemSpec because for some assets that points to the output folder and causes issues with incrementalism. - public class ComputeBlazorFilesToCompress : Task - { - // TODO: Remove this class because the logic moved to the static web assets SDK. - // Then update the tests accordingly. - - [Required] public ITaskItem[] Assets { get; set; } - - [Output] public ITaskItem[] AssetsToCompress { get; set; } - - public override bool Execute() - { - var result = new List(); - - for (var i = 0; i < Assets.Length; i++) - { - var asset = Assets[i]; - var originalItemSpec = asset.GetMetadata("OriginalItemSpec"); - if (File.Exists(originalItemSpec)) - { - Log.LogMessage(MessageImportance.Low, "Asset '{0}' found at OriginalItemSpec '{1}' and will be used for compressing the asset", - asset.ItemSpec, - originalItemSpec); - - result.Add(CreateGzipAsset(asset, originalItemSpec)); - } - else if (File.Exists(asset.ItemSpec)) - { - Log.LogMessage(MessageImportance.Low, "Asset '{0}' found at '{1}' and will be used for compressing the asset", - asset.ItemSpec, - asset.ItemSpec); - - result.Add(CreateGzipAsset(asset, asset.ItemSpec)); - } - else - { - Log.LogError("The asset '{0}' can not be found at any of the searched locations '{1}' and '{2}'", - asset.ItemSpec, - asset.ItemSpec, - originalItemSpec); - break; - } - } - - AssetsToCompress = result.ToArray(); - - return !Log.HasLoggedErrors; - - static TaskItem CreateGzipAsset(ITaskItem asset, string gzipSpec) - { - var result = new TaskItem(gzipSpec, asset.CloneCustomMetadata()); - - result.SetMetadata("RelatedAsset", asset.ItemSpec); - result.SetMetadata("AssetRole", "Alternative"); - result.SetMetadata("AssetTraitName", "Content-Encoding"); - result.SetMetadata("AssetTraitValue", "gzip"); - - return result; - } - } - } -} diff --git a/src/StaticWebAssetsSdk/Tasks/AssetToCompress.cs b/src/StaticWebAssetsSdk/Tasks/AssetToCompress.cs index 52c27c0503c7..8b019458dcbc 100644 --- a/src/StaticWebAssetsSdk/Tasks/AssetToCompress.cs +++ b/src/StaticWebAssetsSdk/Tasks/AssetToCompress.cs @@ -12,30 +12,30 @@ internal static class AssetToCompress { public static bool TryFindInputFilePath(ITaskItem assetToCompress, TaskLoggingHelper log, out string fullPath) { - var originalAssetPath = assetToCompress.GetMetadata("OriginalAsset"); - if (File.Exists(originalAssetPath)) + var relatedAssetOriginalItemSpec = assetToCompress.GetMetadata("RelatedAssetOriginalItemSpec"); + if (File.Exists(relatedAssetOriginalItemSpec)) { - log.LogMessage(MessageImportance.Low, "Asset '{0}' found at original asset path '{1}'.", + log.LogMessage(MessageImportance.Low, "Asset '{0}' found at original item spec '{1}'.", assetToCompress.ItemSpec, - originalAssetPath); - fullPath = originalAssetPath; + relatedAssetOriginalItemSpec); + fullPath = relatedAssetOriginalItemSpec; return true; } - var relatedAssetPath = assetToCompress.GetMetadata("RelatedAsset"); - if (File.Exists(relatedAssetPath)) + var relatedAsset = assetToCompress.GetMetadata("RelatedAsset"); + if (File.Exists(relatedAsset)) { - log.LogMessage(MessageImportance.Low, "Asset '{0}' found at related asset path '{1}'.", + log.LogMessage(MessageImportance.Low, "Asset '{0}' found at path '{1}'.", assetToCompress.ItemSpec, - relatedAssetPath); - fullPath = relatedAssetPath; + relatedAsset); + fullPath = relatedAsset; return true; } log.LogError("The asset '{0}' can not be found at any of the searched locations '{1}' and '{2}'.", assetToCompress.ItemSpec, - originalAssetPath, - relatedAssetPath); + relatedAssetOriginalItemSpec, + relatedAsset); fullPath = null; return false; } diff --git a/src/StaticWebAssetsSdk/Tasks/CompressionConfiguration.cs b/src/StaticWebAssetsSdk/Tasks/CompressionConfiguration.cs new file mode 100644 index 000000000000..8845830c23e4 --- /dev/null +++ b/src/StaticWebAssetsSdk/Tasks/CompressionConfiguration.cs @@ -0,0 +1,145 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. +// + +using System; +using System.IO; +using System.Linq; +using Microsoft.Build.Framework; +using Microsoft.Build.Utilities; +using Microsoft.Extensions.FileSystemGlobbing; + +namespace Microsoft.AspNetCore.StaticWebAssets.Tasks; + +public sealed class CompressionConfiguration +{ + private Matcher _matcher; + + public string ItemSpec { get; set; } + + public string IncludePattern { get; set; } + + public string ExcludePattern { get; set; } + + public string Format { get; set; } + + public string Stage { get; set; } + + public static CompressionConfiguration FromTaskItem(ITaskItem taskItem) + { + var itemSpec = taskItem.ItemSpec; + var includePattern = taskItem.GetMetadata(nameof(IncludePattern)); + var excludePattern = taskItem.GetMetadata(nameof(ExcludePattern)); + var format = taskItem.GetMetadata(nameof(Format)); + var stage = taskItem.GetMetadata(nameof(Stage)); + + if (!CompressionFormat.IsValidCompressionFormat(format)) + { + throw new InvalidOperationException($"Unknown compression format '{format}' for the compression configuration '{itemSpec}'."); + } + + if (!BuildStage.IsValidBuildStage(stage)) + { + throw new InvalidOperationException($"Unknown build stage '{stage}' for the compression configuration '{itemSpec}'."); + } + + return new() + { + ItemSpec = itemSpec, + IncludePattern = includePattern, + ExcludePattern = excludePattern, + Format = format, + Stage = stage, + }; + } + + public string ComputeOutputPath(string outputBasePath) + { + if (ComputeOutputSubdirectory() is { } outputSubdirectory) + { + return Path.Combine(outputBasePath, outputSubdirectory); + } + + throw new InvalidOperationException($"Could not compute the output subdirectory for compression configuration '{ItemSpec}'."); + + string ComputeOutputSubdirectory() + { + // TODO: Let's change the output directory to be compressed\[publish]\ + if (BuildStage.IsBuild(Stage)) + { + if (CompressionFormat.IsGzip(Format)) + { + return "build-gz"; + } + + if (CompressionFormat.IsBrotli(Format)) + { + return "build-br"; + } + + return null; + } + + if (BuildStage.IsPublish(Stage)) + { + return "compress"; + } + + return null; + } + } + + public ITaskItem ToTaskItem() + { + var taskItem = new TaskItem(ItemSpec); + taskItem.SetMetadata(nameof(IncludePattern), IncludePattern); + taskItem.SetMetadata(nameof(ExcludePattern), ExcludePattern); + taskItem.SetMetadata(nameof(Format), Format); + taskItem.SetMetadata(nameof(Stage), Stage); + return taskItem; + } + + public bool Matches(string relativePath) + { + if (_matcher is null) + { + _matcher = new Matcher(); + var includePatterns = SplitPattern(IncludePattern); + var excludePatterns = SplitPattern(ExcludePattern); + _matcher.AddIncludePatterns(includePatterns); + _matcher.AddExcludePatterns(excludePatterns); + } + + return _matcher.Match(relativePath).HasMatches; + + static string[] SplitPattern(string pattern) + => string.IsNullOrEmpty(pattern) ? Array.Empty() : pattern + .Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries) + .Select(s => s.Trim()) + .ToArray(); + } + + public static class BuildStage + { + public const string Build = nameof(Build); + public const string Publish = nameof(Publish); + + public static bool IsBuild(string buildStage) => string.Equals(Build, buildStage, StringComparison.OrdinalIgnoreCase); + public static bool IsPublish(string buildStage) => string.Equals(Publish, buildStage, StringComparison.OrdinalIgnoreCase); + public static bool IsValidBuildStage(string buildStage) + => IsBuild(buildStage) + || IsPublish(buildStage); + } + + public static class CompressionFormat + { + public const string Gzip = nameof(Gzip); + public const string Brotli = nameof(Brotli); + + public static bool IsGzip(string format) => string.Equals(Gzip, format, StringComparison.OrdinalIgnoreCase); + public static bool IsBrotli(string format) => string.Equals(Brotli, format, StringComparison.OrdinalIgnoreCase); + public static bool IsValidCompressionFormat(string format) + => IsGzip(format) + || IsBrotli(format); + } +} diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs index 4084580542ed..156c10919e19 100644 --- a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -7,7 +7,6 @@ using System.Linq; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; -using Microsoft.Extensions.FileSystemGlobbing; using Microsoft.NET.Sdk.WebAssembly; namespace Microsoft.AspNetCore.StaticWebAssets.Tasks; @@ -70,7 +69,7 @@ public override bool Execute() var compressionFormat = asset.GetMetadata("AssetTraitValue"); - if (!CompressionFormat.IsValidCompressionFormat(compressionFormat)) + if (!CompressionConfiguration.CompressionFormat.IsValidCompressionFormat(compressionFormat)) { Log.LogError( "The asset '{0}' has an unknown compression format '{1}'.", @@ -159,7 +158,7 @@ public override bool Execute() // Process the final set of candidate assets, deduplicating assets to be compressed in the same format multiple times and // generating new a static web asset definition for each compressed item. - var compressedAssets = new List(); + var assetsToCompress = new List(); foreach (var configuration in compressionConfigurations) { var candidateAssets = candidateAssetsByConfigurationName[configuration.ItemSpec]; @@ -168,13 +167,14 @@ public override bool Execute() foreach (var asset in candidateAssets) { var itemSpec = asset.ItemSpec; - if (!existingCompressionFormatsByAssetItemSpec.TryGetValue(itemSpec, out var alreadyCompressedFormats)) + if (!existingCompressionFormatsByAssetItemSpec.TryGetValue(itemSpec, out var existingFormats)) { - alreadyCompressedFormats = new(); + existingFormats = new(); + existingCompressionFormatsByAssetItemSpec.Add(itemSpec, existingFormats); } var format = configuration.Format; - if (alreadyCompressedFormats.Contains(format)) + if (existingFormats.Contains(format)) { Log.LogMessage( "Ignoring asset '{0}' because it was already resolved with format '{1}'.", @@ -185,8 +185,8 @@ public override bool Execute() if (TryCreateCompressedAsset(asset, targetDirectory, configuration.Format, out var compressedAsset)) { - compressedAssets.Add(compressedAsset); - alreadyCompressedFormats.Add(format); + assetsToCompress.Add(compressedAsset); + existingFormats.Add(format); Log.LogMessage( "Created compressed asset '{0}'.", @@ -201,7 +201,7 @@ public override bool Execute() } } - AssetsToCompress = compressedAssets.ToArray(); + AssetsToCompress = assetsToCompress.ToArray(); return !Log.HasLoggedErrors; } @@ -216,12 +216,12 @@ private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, s string fileExtension; string assetTraitValue; - if (CompressionFormat.IsGzip(format)) + if (CompressionConfiguration.CompressionFormat.IsGzip(format)) { fileExtension = ".gz"; assetTraitValue = "gzip"; } - else if (CompressionFormat.IsBrotli(format)) + else if (CompressionConfiguration.CompressionFormat.IsBrotli(format)) { fileExtension = ".br"; assetTraitValue = "br"; @@ -244,132 +244,13 @@ private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, s result = new TaskItem(outputRelativePath, asset.CloneCustomMetadata()); result.SetMetadata("RelativePath", relativePath + fileExtension); - result.SetMetadata("RelatedAsset", asset.ItemSpec); result.SetMetadata("OriginalItemSpec", asset.ItemSpec); - result.SetMetadata("OriginalAsset", originalItemSpec); + result.SetMetadata("RelatedAsset", asset.ItemSpec); + result.SetMetadata("RelatedAssetOriginalItemSpec", originalItemSpec); result.SetMetadata("AssetRole", "Alternative"); result.SetMetadata("AssetTraitName", "Content-Encoding"); result.SetMetadata("AssetTraitValue", assetTraitValue); return true; } - - private static class BuildStage - { - public const string Build = nameof(Build); - public const string Publish = nameof(Publish); - - public static bool IsBuild(string buildStage) => string.Equals(Build, buildStage, StringComparison.OrdinalIgnoreCase); - public static bool IsPublish(string buildStage) => string.Equals(Publish, buildStage, StringComparison.OrdinalIgnoreCase); - public static bool IsValidBuildStage(string buildStage) - => IsBuild(buildStage) - || IsPublish(buildStage); - } - - private static class CompressionFormat - { - public const string Gzip = nameof(Gzip); - public const string Brotli = nameof(Brotli); - - public static bool IsGzip(string format) => string.Equals(Gzip, format, StringComparison.OrdinalIgnoreCase); - public static bool IsBrotli(string format) => string.Equals(Brotli, format, StringComparison.OrdinalIgnoreCase); - public static bool IsValidCompressionFormat(string format) - => IsGzip(format) - || IsBrotli(format); - } - - private sealed class CompressionConfiguration - { - private readonly Matcher _matcher = new(); - - public string ItemSpec { get; set; } - - public string IncludePattern { get; set; } - - public string ExcludePattern { get; set; } - - public string Format { get; } - - public string Stage { get; } - - public static CompressionConfiguration FromTaskItem(ITaskItem taskItem) - { - var itemSpec = taskItem.ItemSpec; - var includePattern = taskItem.GetMetadata("IncludePattern"); - var excludePattern = taskItem.GetMetadata("ExcludePattern"); - var format = taskItem.GetMetadata("Format"); - var stage = taskItem.GetMetadata("Stage"); - - if (!CompressionFormat.IsValidCompressionFormat(format)) - { - throw new InvalidOperationException($"Unknown compression format '{format}' for the compression configuration '{itemSpec}'."); - } - - if (!BuildStage.IsValidBuildStage(stage)) - { - throw new InvalidOperationException($"Unknown build stage '{stage}' for the compression configuration '{itemSpec}'."); - } - - return new(itemSpec, includePattern, excludePattern, format, stage); - } - - private CompressionConfiguration(string itemSpec, string includePattern, string excludePattern, string format, string stage) - { - ItemSpec = itemSpec; - IncludePattern = includePattern; - ExcludePattern = excludePattern; - Format = format; - Stage = stage; - - var includePatterns = SplitPattern(includePattern); - var excludePatterns = SplitPattern(excludePattern); - _matcher.AddIncludePatterns(includePatterns); - _matcher.AddExcludePatterns(excludePatterns); - - static string[] SplitPattern(string pattern) - => pattern - .Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries) - .Select(s => s.Trim()) - .ToArray(); - } - - public string ComputeOutputPath(string outputBasePath) - { - if (ComputeOutputSubdirectory() is { } outputSubdirectory) - { - return Path.Combine(outputBasePath, outputSubdirectory); - } - - throw new InvalidOperationException($"Could not compute the output subdirectory for compression configuration '{ItemSpec}'."); - - string ComputeOutputSubdirectory() - { - // TODO: Let's change the output directory to be compressed\[publish]\ - if (BuildStage.IsBuild(Stage)) - { - if (CompressionFormat.IsGzip(Format)) - { - return "build-gz"; - } - - if (CompressionFormat.IsBrotli(Format)) - { - return "build-br"; - } - - return null; - } - - if (BuildStage.IsPublish(Stage)) - { - return "compress"; - } - - return null; - } - } - - public bool Matches(string relativePath) - => _matcher.Match(relativePath).HasMatches; - } } diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ComputeBlazorFilesToCompressTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ComputeBlazorFilesToCompressTest.cs deleted file mode 100644 index 4bfbad2fa742..000000000000 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ComputeBlazorFilesToCompressTest.cs +++ /dev/null @@ -1,124 +0,0 @@ -// Copyright (c) .NET Foundation and contributors. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -// - -using System; -using System.Collections.Generic; -using System.IO; -using FluentAssertions; -using Microsoft.AspNetCore.StaticWebAssets.Tasks; -using Microsoft.Build.Framework; -using Microsoft.NET.TestFramework; -using Moq; -using Xunit; - -namespace Microsoft.NET.Sdk.BlazorWebAssembly.Tests -{ - public class ComputeBlazorFilesToCompressTest - { - public ComputeBlazorFilesToCompressTest() - { - Directory.CreateDirectory(Path.Combine(TestContext.Current.TestExecutionDirectory, nameof(ComputeBlazorFilesToCompressTest))); - ItemSpec = Path.Combine(TestContext.Current.TestExecutionDirectory, nameof(ComputeBlazorFilesToCompressTest), Guid.NewGuid().ToString("N") + ".tmp"); - OriginalItemSpec = Path.Combine(TestContext.Current.TestExecutionDirectory, nameof(ComputeBlazorFilesToCompressTest), Guid.NewGuid().ToString("N") + ".tmp"); - } - - public string ItemSpec { get; } - - public string OriginalItemSpec { get; } - - [Fact] - public void PrefersOriginalItemSpecWhenFileExists() - { - // Arrange - var errorMessages = new List(); - var buildEngine = new Mock(); - buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) - .Callback(args => errorMessages.Add(args.Message)); - - File.Create(ItemSpec); - File.Create(OriginalItemSpec); - - var asset = new StaticWebAsset() - { - Identity = ItemSpec, - OriginalItemSpec = OriginalItemSpec - }; - - var task = new ComputeBlazorFilesToCompress - { - BuildEngine = buildEngine.Object, - Assets = new[] { asset.ToTaskItem()} - }; - - // Act - var result = task.Execute(); - - // Assert - result.Should().BeTrue(); - task.AssetsToCompress.Should().HaveCount(1); - task.AssetsToCompress[0].ItemSpec.Should().Be(OriginalItemSpec); - } - - [Fact] - public void FallsBackToItemSpecWhenIdentityDoesNotExist() - { - // Arrange - var errorMessages = new List(); - var buildEngine = new Mock(); - buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) - .Callback(args => errorMessages.Add(args.Message)); - - File.Create(ItemSpec); - - var asset = new StaticWebAsset() - { - Identity = ItemSpec, - OriginalItemSpec = OriginalItemSpec - }; - - var task = new ComputeBlazorFilesToCompress - { - BuildEngine = buildEngine.Object, - Assets = new[] { asset.ToTaskItem() } - }; - - // Act - var result = task.Execute(); - - // Assert - result.Should().BeTrue(); - task.AssetsToCompress.Should().HaveCount(1); - task.AssetsToCompress[0].ItemSpec.Should().Be(ItemSpec); - } - - [Fact] - public void FailsWhenNeitherIdentityNorOriginalItemSpecExist() - { - // Arrange - var errorMessages = new List(); - var buildEngine = new Mock(); - buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) - .Callback(args => errorMessages.Add(args.Message)); - - var asset = new StaticWebAsset() - { - Identity = ItemSpec, - OriginalItemSpec = OriginalItemSpec - }; - - var task = new ComputeBlazorFilesToCompress - { - BuildEngine = buildEngine.Object, - Assets = new[] { asset.ToTaskItem() } - }; - - // Act - var result = task.Execute(); - - // Assert - result.Should().BeFalse(); - task.AssetsToCompress.Should().BeEmpty(); - } - } -} diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs new file mode 100644 index 000000000000..613532ffa76c --- /dev/null +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs @@ -0,0 +1,325 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. +// + +using System; +using System.Collections.Generic; +using System.IO; +using FluentAssertions; +using Microsoft.AspNetCore.StaticWebAssets.Tasks; +using Microsoft.Build.Framework; +using Microsoft.Build.Utilities; +using Microsoft.NET.TestFramework; +using Moq; +using Xunit; + +namespace Microsoft.NET.Sdk.BlazorWebAssembly.Tests; + +public class ResolveCompressedAssetsTest +{ + public string ItemSpec { get; } + + public string OriginalItemSpec { get; } + + public string OutputBasePath { get; } + + public ResolveCompressedAssetsTest() + { + Directory.CreateDirectory(Path.Combine(TestContext.Current.TestExecutionDirectory, nameof(ResolveCompressedAssetsTest))); + OutputBasePath = Path.Combine(TestContext.Current.TestExecutionDirectory, nameof(ResolveCompressedAssetsTest)); + ItemSpec = Path.Combine(OutputBasePath, Guid.NewGuid().ToString("N") + ".tmp"); + OriginalItemSpec = Path.Combine(OutputBasePath, Guid.NewGuid().ToString("N") + ".tmp"); + } + + [Fact] + public void ResolvesExplicitlyProvidedAssets() + { + // Arrange + var errorMessages = new List(); + var buildEngine = new Mock(); + buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) + .Callback(args => errorMessages.Add(args.Message)); + + File.Create(ItemSpec); + File.Create(OriginalItemSpec); + + var asset = new StaticWebAsset() + { + Identity = ItemSpec, + OriginalItemSpec = OriginalItemSpec, + RelativePath = Path.GetFileName(ItemSpec), + }.ToTaskItem(); + + var gzipCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionGzip", + Format = "gzip", + Stage = "Build", + }.ToTaskItem(); + + var brotliCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionBrotli", + Format = "brotli", + Stage = "Publish", + }.ToTaskItem(); + + var gzipExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); + gzipExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionGzip"); + + var brotliExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); + brotliExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionBrotli"); + + var task = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, + }; + + // Act + var result = task.Execute(); + + // Assert + result.Should().BeTrue(); + task.AssetsToCompress.Should().HaveCount(2); + task.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + task.AssetsToCompress[1].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + } + + [Fact] + public void ResolvesAssetsMatchingIncludePattern() + { + // Arrange + var errorMessages = new List(); + var buildEngine = new Mock(); + buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) + .Callback(args => errorMessages.Add(args.Message)); + + File.Create(ItemSpec); + File.Create(OriginalItemSpec); + + var asset = new StaticWebAsset() + { + Identity = ItemSpec, + OriginalItemSpec = OriginalItemSpec, + RelativePath = Path.GetFileName(ItemSpec), + }.ToTaskItem(); + + var gzipCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionGzip", + IncludePattern = "**\\*.tmp", + Format = "gzip", + Stage = "Build", + }.ToTaskItem(); + + var brotliCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionBrotli", + IncludePattern = "**\\*.tmp", + Format = "brotli", + Stage = "Publish", + }.ToTaskItem(); + + var task = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + }; + + // Act + var result = task.Execute(); + + // Assert + result.Should().BeTrue(); + task.AssetsToCompress.Should().HaveCount(2); + task.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + task.AssetsToCompress[1].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + } + + [Fact] + public void ExcludesAssetsMatchingExcludePattern() + { + // Arrange + var errorMessages = new List(); + var buildEngine = new Mock(); + buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) + .Callback(args => errorMessages.Add(args.Message)); + + File.Create(ItemSpec); + File.Create(OriginalItemSpec); + + var asset = new StaticWebAsset() + { + Identity = ItemSpec, + OriginalItemSpec = OriginalItemSpec, + RelativePath = Path.GetFileName(ItemSpec), + }.ToTaskItem(); + + var gzipCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionGzip", + IncludePattern = "**\\*.tmp", + Format = "gzip", + Stage = "Build", + }.ToTaskItem(); + + var brotliCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionBrotli", + IncludePattern = "**\\*", + ExcludePattern = "**\\*.tmp", + Format = "brotli", + Stage = "Publish", + }.ToTaskItem(); + + var task = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + }; + + // Act + var result = task.Execute(); + + // Assert + result.Should().BeTrue(); + task.AssetsToCompress.Should().HaveCount(1); + task.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + } + + [Fact] + public void DeduplicatesAssetsResolvedBothExplicitlyAndFromPattern() + { + // Arrange + var errorMessages = new List(); + var buildEngine = new Mock(); + buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) + .Callback(args => errorMessages.Add(args.Message)); + + File.Create(ItemSpec); + File.Create(OriginalItemSpec); + + var asset = new StaticWebAsset() + { + Identity = ItemSpec, + OriginalItemSpec = OriginalItemSpec, + RelativePath = Path.GetFileName(ItemSpec), + }.ToTaskItem(); + + var gzipCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionGzip", + IncludePattern = "**\\*.tmp", + Format = "gzip", + Stage = "Build", + }.ToTaskItem(); + + var brotliCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionBrotli", + IncludePattern = "**\\*.tmp", + Format = "brotli", + Stage = "Publish", + }.ToTaskItem(); + + var gzipExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); + gzipExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionGzip"); + + var brotliExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); + brotliExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionBrotli"); + + var task = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, + }; + + // Act + var result = task.Execute(); + + // Assert + result.Should().BeTrue(); + task.AssetsToCompress.Should().HaveCount(2); + task.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + task.AssetsToCompress[1].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + } + + [Fact] + public void IgnoresAssetsCompressedInPreviousTaskRun() + { + // Arrange + var errorMessages = new List(); + var buildEngine = new Mock(); + buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) + .Callback(args => errorMessages.Add(args.Message)); + + File.Create(ItemSpec); + File.Create(OriginalItemSpec); + + var asset = new StaticWebAsset() + { + Identity = ItemSpec, + OriginalItemSpec = OriginalItemSpec, + RelativePath = Path.GetFileName(ItemSpec), + }.ToTaskItem(); + + var gzipCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionGzip", + IncludePattern = "**\\*.tmp", + Format = "gzip", + Stage = "Build", + }.ToTaskItem(); + + var brotliCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionBrotli", + Format = "brotli", + Stage = "Publish", + }.ToTaskItem(); + + // Act/Assert + var task1 = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + }; + + var result1 = task1.Execute(); + + result1.Should().BeTrue(); + task1.AssetsToCompress.Should().HaveCount(1); + task1.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + + var brotliExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); + brotliExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionBrotli"); + + var task2 = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset, task1.AssetsToCompress[0] }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + ExplicitAssets = new[] { brotliExplicitAsset }, + }; + + var result2 = task2.Execute(); + + result2.Should().BeTrue(); + task2.AssetsToCompress.Should().HaveCount(1); + task2.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + } +} From 29f980abd5b481194a26481fdd8acb4045bbdc56 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Wed, 12 Apr 2023 12:37:42 -0700 Subject: [PATCH 12/14] Some PR feedback --- ...soft.NET.Sdk.BlazorWebAssembly.6_0.targets | 60 +--------- ...ET.Sdk.StaticWebAssets.Compression.targets | 16 +-- .../Tasks/CompressionConfiguration.cs | 44 ++----- .../Tasks/ResolveCompressedAssets.cs | 51 +++++++- .../ResolveCompressedAssetsTest.cs | 110 ++++++++++++++---- ...rosoft.NET.Sdk.WebAssembly.Current.targets | 40 +++++++ 6 files changed, 187 insertions(+), 134 deletions(-) diff --git a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets index be9fe9693054..15e4dca6f5d6 100644 --- a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets +++ b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets @@ -60,20 +60,10 @@ Copyright (c) .NET Foundation. All rights reserved. - - $(ResolveCompressedFilesDependsOn); + + $(ResolveStaticWebAssetsInputsDependsOn); _ResolveBlazorWasmOutputs; - - - - $(ResolveCompressedFilesForPublishDependsOn); - _CollectAssetsToCompressForPublish; - - - - $(AddWasmStaticWebAssetsDependsOn); - _ResolveBlazorWasmOutputs; - + $(GenerateBuildWasmBootJsonDependsOn); @@ -86,32 +76,6 @@ Copyright (c) .NET Foundation. All rights reserved. - - - - - Build - gzip - _framework\** - _framework\blazor.boot.json - - - - Publish - gzip - $(_BlazorPublishCompressDirectory) - - - Publish - brotli - - - - @@ -163,24 +127,6 @@ Copyright (c) .NET Foundation. All rights reserved. - - - - BlazorPublishGzip - - - - BlazorPublishBrotli - - - - - - <_CompressedFileIncludePatternForBuild - Include="@(CompressionConfiguration)" - Condition="'%(Stage)' == 'Build'" /> - - - <_CompressedFileIncludePatternForPublish - Include="@(CompressionConfiguration)" - Condition="'%(Stage)' == 'Publish'" /> - <_CandidateAssetsForPublish Include="@(StaticWebAsset)" Condition="'%(AssetKind)' != 'Build'" /> @@ -101,8 +92,9 @@ Copyright (c) .NET Foundation. All rights reserved. BuildStage.IsAll(Stage) + || string.Equals(Stage, buildStage, StringComparison.OrdinalIgnoreCase); public ITaskItem ToTaskItem() { @@ -123,12 +91,16 @@ public static class BuildStage { public const string Build = nameof(Build); public const string Publish = nameof(Publish); + public const string All = nameof(All); public static bool IsBuild(string buildStage) => string.Equals(Build, buildStage, StringComparison.OrdinalIgnoreCase); public static bool IsPublish(string buildStage) => string.Equals(Publish, buildStage, StringComparison.OrdinalIgnoreCase); + public static bool IsAll(string buildStage) => string.Equals(All, buildStage, StringComparison.OrdinalIgnoreCase); + public static bool IsValidBuildStage(string buildStage) => IsBuild(buildStage) - || IsPublish(buildStage); + || IsPublish(buildStage) + || IsAll(buildStage); } public static class CompressionFormat diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs index 156c10919e19..9670fcf000b8 100644 --- a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -19,6 +19,9 @@ public class ResolveCompressedAssets : Task public ITaskItem[] ExplicitAssets { get; set; } + [Required] + public string Stage { get; set; } + [Required] public string OutputBasePath { get; set; } @@ -84,6 +87,7 @@ public override bool Execute() // Generate internal representations of each compression configuration. var compressionConfigurations = CompressionConfigurations .Select(CompressionConfiguration.FromTaskItem) + .Where(cc => cc.StageIncludes(Stage)) .ToArray(); var candidateAssetsByConfigurationName = compressionConfigurations .ToDictionary(cc => cc.ItemSpec, _ => new List()); @@ -98,16 +102,17 @@ public override bool Execute() { candidateAssets.Add(asset); Log.LogMessage( - "Explicitly-specified compressed asset '{0}' matches known compression configuration '{1}'.", + "Explicitly-specified compressed asset '{0}' matches compression configuration '{1}'.", asset.ItemSpec, configurationName); } else { - Log.LogError( - "Explicitly-specified compressed asset '{0}' has an unknown compression configuration '{1}'.", + Log.LogMessage( + "Skipping explicitly-specified compressed asset '{0}' with compression configuration '{1}' not included in stage '{2}'.", asset.ItemSpec, - configurationName); + configurationName, + Stage); } } } @@ -162,7 +167,7 @@ public override bool Execute() foreach (var configuration in compressionConfigurations) { var candidateAssets = candidateAssetsByConfigurationName[configuration.ItemSpec]; - var targetDirectory = configuration.ComputeOutputPath(OutputBasePath); + var targetDirectory = ComputeOutputPath(configuration.Format); foreach (var asset in candidateAssets) { @@ -253,4 +258,40 @@ private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, s return true; } + + public string ComputeOutputPath(string format) + { + if (ComputeOutputSubdirectory() is { } outputSubdirectory) + { + return Path.Combine(OutputBasePath, outputSubdirectory); + } + + throw new InvalidOperationException($"Could not compute the compression output subdirectory for stage '{Stage}' and format '{format}'."); + + string ComputeOutputSubdirectory() + { + // TODO: Let's change the output directory to be compressed\[publish]\ + if (CompressionConfiguration.BuildStage.IsBuild(Stage)) + { + if (CompressionConfiguration.CompressionFormat.IsGzip(format)) + { + return "build-gz"; + } + + if (CompressionConfiguration.CompressionFormat.IsBrotli(format)) + { + return "build-br"; + } + + return null; + } + + if (CompressionConfiguration.BuildStage.IsPublish(Stage)) + { + return "compress"; + } + + return null; + } + } } diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs index 613532ffa76c..a15fda1f8b70 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs @@ -70,25 +70,42 @@ public void ResolvesExplicitlyProvidedAssets() var brotliExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); brotliExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionBrotli"); - var task = new ResolveCompressedAssets() + var buildTask = new ResolveCompressedAssets() { OutputBasePath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, + Stage = "Build", + }; + + var publishTask = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, + Stage = "Publish", }; // Act - var result = task.Execute(); + var buildResult = buildTask.Execute(); + var publishResult = publishTask.Execute(); // Assert - result.Should().BeTrue(); - task.AssetsToCompress.Should().HaveCount(2); - task.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); - task.AssetsToCompress[1].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + buildResult.Should().BeTrue(); + buildTask.AssetsToCompress.Should().HaveCount(1); + buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + + publishResult.Should().BeTrue(); + publishTask.AssetsToCompress.Should().HaveCount(1); + publishTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); } + // TODO: Update the rest of these tests. + [Fact] public void ResolvesAssetsMatchingIncludePattern() { @@ -124,22 +141,36 @@ public void ResolvesAssetsMatchingIncludePattern() Stage = "Publish", }.ToTaskItem(); - var task = new ResolveCompressedAssets() + var buildTask = new ResolveCompressedAssets() { OutputBasePath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + Stage = "Build", + }; + + var publishTask = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + Stage = "Publish", }; // Act - var result = task.Execute(); + var buildResult = buildTask.Execute(); + var publishResult = publishTask.Execute(); // Assert - result.Should().BeTrue(); - task.AssetsToCompress.Should().HaveCount(2); - task.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); - task.AssetsToCompress[1].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + buildResult.Should().BeTrue(); + buildTask.AssetsToCompress.Should().HaveCount(1); + buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + + publishResult.Should().BeTrue(); + publishTask.AssetsToCompress.Should().HaveCount(1); + publishTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); } [Fact] @@ -178,21 +209,35 @@ public void ExcludesAssetsMatchingExcludePattern() Stage = "Publish", }.ToTaskItem(); - var task = new ResolveCompressedAssets() + var buildTask = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + Stage = "Build", + }; + + var publishTask = new ResolveCompressedAssets() { OutputBasePath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + Stage = "Publish", }; // Act - var result = task.Execute(); + var buildResult = buildTask.Execute(); + var publishResult = publishTask.Execute(); // Assert - result.Should().BeTrue(); - task.AssetsToCompress.Should().HaveCount(1); - task.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + buildResult.Should().BeTrue(); + buildTask.AssetsToCompress.Should().HaveCount(1); + buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + + publishResult.Should().BeTrue(); + publishTask.AssetsToCompress.Should().BeEmpty(); } [Fact] @@ -236,23 +281,38 @@ public void DeduplicatesAssetsResolvedBothExplicitlyAndFromPattern() var brotliExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); brotliExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionBrotli"); - var task = new ResolveCompressedAssets() + var buildTask = new ResolveCompressedAssets() { OutputBasePath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, + Stage = "Build", + }; + + var publishTask = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset }, + CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, + Stage = "Publish", }; // Act - var result = task.Execute(); + var buildResult = buildTask.Execute(); + var publishResult = publishTask.Execute(); // Assert - result.Should().BeTrue(); - task.AssetsToCompress.Should().HaveCount(2); - task.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); - task.AssetsToCompress[1].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + buildResult.Should().BeTrue(); + buildTask.AssetsToCompress.Should().HaveCount(1); + buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + + publishResult.Should().BeTrue(); + publishTask.AssetsToCompress.Should().HaveCount(1); + publishTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); } [Fact] @@ -279,7 +339,7 @@ public void IgnoresAssetsCompressedInPreviousTaskRun() ItemSpec = "BuildCompressionGzip", IncludePattern = "**\\*.tmp", Format = "gzip", - Stage = "Build", + Stage = "All", }.ToTaskItem(); var brotliCompressionConfiguration = new CompressionConfiguration() @@ -296,6 +356,7 @@ public void IgnoresAssetsCompressedInPreviousTaskRun() BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + Stage = "Build", }; var result1 = task1.Execute(); @@ -314,6 +375,7 @@ public void IgnoresAssetsCompressedInPreviousTaskRun() CandidateAssets = new[] { asset, task1.AssetsToCompress[0] }, CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, ExplicitAssets = new[] { brotliExplicitAsset }, + Stage = "Publish", }; var result2 = task2.Execute(); diff --git a/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets b/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets index 45085b88e4a8..cbeaffa7437a 100644 --- a/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets +++ b/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets @@ -41,6 +41,27 @@ Copyright (c) .NET Foundation. All rights reserved. + + + + + All + gzip + _framework\** + _framework\blazor.boot.json + + + + Publish + brotli + + + + true true @@ -114,6 +135,7 @@ Copyright (c) .NET Foundation. All rights reserved. ProcessPublishFilesForWasm; ComputeWasmExtensions; _AddPublishWasmBootJsonToStaticWebAssets; + _CollectAssetsToCompressForPublish; @@ -445,6 +467,24 @@ Copyright (c) .NET Foundation. All rights reserved. + + + + WebAssemblyGzip + + + + WebAssemblyBrotli + + + + From 76d40396fe1802d66bb5280a74cf70795a9bc3f0 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Wed, 12 Apr 2023 15:08:07 -0700 Subject: [PATCH 13/14] More PR feedback --- ...ET.Sdk.StaticWebAssets.Compression.targets | 55 ++++++-------- .../Tasks/CompressionConfiguration.cs | 26 ++++++- .../Tasks/ResolveCompressedAssets.cs | 12 ++++ .../ResolveCompressedAssetsTest.cs | 71 ++++++++++++++----- ...rosoft.NET.Sdk.WebAssembly.Current.targets | 41 ++++++----- 5 files changed, 130 insertions(+), 75 deletions(-) diff --git a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets index 911eabbc5a56..dcac52d34996 100644 --- a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets +++ b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets @@ -16,43 +16,44 @@ Copyright (c) .NET Foundation. All rights reserved. + + $(GlobalCompressionExcludePattern) + + $(ResolveCompressedFilesDependsOn) $(ResolveCompressedFilesForPublishDependsOn) - - $(CompressFilesDependsOn); - CopyStaticWebAssetsToOutputDirectory; - + $(CompressFilesDependsOn); $(CompressFilesForPublishDependsOn) - - - $(GenerateStaticWebAssetsPublishManifestDependsOn); - _CompressFilesForPublish; - - - - $(StaticWebAssetsPrepareForRunDependsOn); + + $(GenerateComputedBuildStaticWebAssetsDependsOn); _CompressFiles; - - + + + $(GenerateComputedPublishStaticWebAssetsDependsOn); + _CompressFilesForPublish; + $(StaticWebAssetsPrepareForPublishDependsOn); _CompressFilesForPublish; - $(ResolveStaticWebAssetsInputsDependsOn); _ResolveCompressedFiles; - $(ResolvePublishStaticWebAssetsDependsOn); _ResolveCompressedFilesForPublish; + + + <_DotNetHostDirectory>$(NetCoreRoot) + <_DotNetHostFileName>dotnet + <_DotNetHostFileName Condition="'$(OS)' == 'Windows_NT'">dotnet.exe @@ -83,17 +85,16 @@ Copyright (c) .NET Foundation. All rights reserved. DependsOnTargets="$(ResolveCompressedFilesForPublishDependsOn)"> - <_CandidateAssetsForPublish Include="@(StaticWebAsset)" Condition="'%(AssetKind)' != 'Build'" /> - @@ -104,16 +105,14 @@ Copyright (c) .NET Foundation. All rights reserved. - - + + DependsOnTargets="$(CompressFilesDependsOn)"> <_GZipCompressedStaticWebAssets Include="@(_CompressedStaticWebAssets)" Condition="'%(AssetTraitName)' == 'Content-Encoding' and '%(AssetTraitValue)' == 'gzip'" /> @@ -123,12 +122,6 @@ Copyright (c) .NET Foundation. All rights reserved. - - <_DotNetHostDirectory>$(NetCoreRoot) - <_DotNetHostFileName>dotnet - <_DotNetHostFileName Condition="'$(OS)' == 'Windows_NT'">dotnet.exe - - - - <_DotNetHostDirectory>$(NetCoreRoot) - <_DotNetHostFileName>dotnet - <_DotNetHostFileName Condition="'$(OS)' == 'Windows_NT'">dotnet.exe - - _includePattern; + set + { + _includePattern = value; + + // Reset the Matcher because the pattern has changed. + _matcher = null; + } + } - public string ExcludePattern { get; set; } + public string ExcludePattern + { + get => _excludePattern; + set + { + _excludePattern = value; + + // Reset the Matcher because the pattern has changed. + _matcher = null; + } + } public string Format { get; set; } diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs index 9670fcf000b8..28d7b7442797 100644 --- a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -19,6 +19,8 @@ public class ResolveCompressedAssets : Task public ITaskItem[] ExplicitAssets { get; set; } + public string GlobalExcludePattern { get; set; } + [Required] public string Stage { get; set; } @@ -92,6 +94,16 @@ public override bool Execute() var candidateAssetsByConfigurationName = compressionConfigurations .ToDictionary(cc => cc.ItemSpec, _ => new List()); + // If specified, add the global exclude pattern to each configuration. + if (!string.IsNullOrEmpty(GlobalExcludePattern)) + { + var delimitedGlobalExcludePattern = $";{GlobalExcludePattern}"; + foreach (var configuration in compressionConfigurations) + { + configuration.ExcludePattern += delimitedGlobalExcludePattern; + } + } + // Add each explicitly-provided asset as a candidate asset for its specified compression configuration. if (ExplicitAssets is not null) { diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs index a15fda1f8b70..73cb84be31bf 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs @@ -25,7 +25,6 @@ public class ResolveCompressedAssetsTest public ResolveCompressedAssetsTest() { - Directory.CreateDirectory(Path.Combine(TestContext.Current.TestExecutionDirectory, nameof(ResolveCompressedAssetsTest))); OutputBasePath = Path.Combine(TestContext.Current.TestExecutionDirectory, nameof(ResolveCompressedAssetsTest)); ItemSpec = Path.Combine(OutputBasePath, Guid.NewGuid().ToString("N") + ".tmp"); OriginalItemSpec = Path.Combine(OutputBasePath, Guid.NewGuid().ToString("N") + ".tmp"); @@ -40,9 +39,6 @@ public void ResolvesExplicitlyProvidedAssets() buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) .Callback(args => errorMessages.Add(args.Message)); - File.Create(ItemSpec); - File.Create(OriginalItemSpec); - var asset = new StaticWebAsset() { Identity = ItemSpec, @@ -104,8 +100,6 @@ public void ResolvesExplicitlyProvidedAssets() publishTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); } - // TODO: Update the rest of these tests. - [Fact] public void ResolvesAssetsMatchingIncludePattern() { @@ -115,9 +109,6 @@ public void ResolvesAssetsMatchingIncludePattern() buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) .Callback(args => errorMessages.Add(args.Message)); - File.Create(ItemSpec); - File.Create(OriginalItemSpec); - var asset = new StaticWebAsset() { Identity = ItemSpec, @@ -182,9 +173,6 @@ public void ExcludesAssetsMatchingExcludePattern() buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) .Callback(args => errorMessages.Add(args.Message)); - File.Create(ItemSpec); - File.Create(OriginalItemSpec); - var asset = new StaticWebAsset() { Identity = ItemSpec, @@ -241,7 +229,7 @@ public void ExcludesAssetsMatchingExcludePattern() } [Fact] - public void DeduplicatesAssetsResolvedBothExplicitlyAndFromPattern() + public void ExcludesAssetsMatchingGlobalExcludePattern() { // Arrange var errorMessages = new List(); @@ -249,8 +237,58 @@ public void DeduplicatesAssetsResolvedBothExplicitlyAndFromPattern() buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) .Callback(args => errorMessages.Add(args.Message)); - File.Create(ItemSpec); - File.Create(OriginalItemSpec); + var asset = new StaticWebAsset() + { + Identity = ItemSpec, + OriginalItemSpec = OriginalItemSpec, + RelativePath = Path.GetFileName(ItemSpec), + }.ToTaskItem(); + + var excludedAssetItemSpec = Path.Combine(OutputBasePath, Guid.NewGuid().ToString("N") + ".exclude.tmp"); + var excludedAssetOriginalItemSpec = Path.Combine(OutputBasePath, Guid.NewGuid().ToString("N") + ".exclude.tmp"); + + var assetToExclude = new StaticWebAsset() + { + Identity = excludedAssetItemSpec, + OriginalItemSpec = excludedAssetOriginalItemSpec, + RelativePath = Path.GetFileName(excludedAssetItemSpec), + }.ToTaskItem(); + + var gzipCompressionConfiguration = new CompressionConfiguration() + { + ItemSpec = "BuildCompressionGzip", + IncludePattern = "**\\*.tmp", + Format = "gzip", + Stage = "Build", + }.ToTaskItem(); + + var buildTask = new ResolveCompressedAssets() + { + OutputBasePath = OutputBasePath, + BuildEngine = buildEngine.Object, + CandidateAssets = new[] { asset, assetToExclude }, + CompressionConfigurations = new[] { gzipCompressionConfiguration }, + GlobalExcludePattern = "**\\*.exclude.tmp", + Stage = "Build", + }; + + // Act + var buildResult = buildTask.Execute(); + + // Assert + buildResult.Should().BeTrue(); + buildTask.AssetsToCompress.Should().HaveCount(1); + buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + } + + [Fact] + public void DeduplicatesAssetsResolvedBothExplicitlyAndFromPattern() + { + // Arrange + var errorMessages = new List(); + var buildEngine = new Mock(); + buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) + .Callback(args => errorMessages.Add(args.Message)); var asset = new StaticWebAsset() { @@ -324,9 +362,6 @@ public void IgnoresAssetsCompressedInPreviousTaskRun() buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) .Callback(args => errorMessages.Add(args.Message)); - File.Create(ItemSpec); - File.Create(OriginalItemSpec); - var asset = new StaticWebAsset() { Identity = ItemSpec, diff --git a/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets b/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets index cbeaffa7437a..b2dd9d2abff8 100644 --- a/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets +++ b/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets @@ -19,6 +19,26 @@ Copyright (c) .NET Foundation. All rights reserved. true + + + + + All + gzip + _framework\** + _framework\blazor.boot.json + + + + Publish + brotli + + + @@ -41,27 +61,6 @@ Copyright (c) .NET Foundation. All rights reserved. - - - - - All - gzip - _framework\** - _framework\blazor.boot.json - - - - Publish - brotli - - - - true true From cb8e9e6b1d42ed354596daf10856d102d8b37f3e Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Thu, 13 Apr 2023 18:02:46 -0700 Subject: [PATCH 14/14] PR feedback, improvements, updated baselines --- ...soft.NET.Sdk.BlazorWebAssembly.6_0.targets | 1 - ...ET.Sdk.StaticWebAssets.Compression.targets | 40 +- .../Tasks/CompressionConfiguration.cs | 139 ----- .../Tasks/ResolveCompressedAssets.cs | 206 +++----- .../ResolveCompressedAssetsTest.cs | 264 ++-------- ...ootJsonManifest.Build.staticwebassets.json | 419 +++++++-------- ...iesAreCopiedToBuildOutput.Build.files.json | 470 ++++++++--------- ...edToBuildOutput.Build.staticwebassets.json | 487 +++++++++--------- ...duleTargetPaths.Build.staticwebassets.json | 427 +++++++-------- ...izeBlazorInitialization.Publish.files.json | 294 +++++------ ...nitialization.Publish.staticwebassets.json | 302 +++++------ ...tBuildAndPublishModules.Publish.files.json | 290 +++++------ ...ublishModules.Publish.staticwebassets.json | 298 +++++------ ...nitialization.Publish.staticwebassets.json | 314 +++++------ ...0Hosted_Works.Publish.staticwebassets.json | 164 +++--- ...nBlazorBootJsonManifest.Publish.files.json | 290 +++++------ ...tJsonManifest.Publish.staticwebassets.json | 298 +++++------ ...Assets_BuildMinimal_Works.Build.files.json | 402 ++++++++------- ...ldMinimal_Works.Build.staticwebassets.json | 419 +++++++-------- ...Assets_Build_Hosted_Works.Build.files.json | 1 + ...ld_Hosted_Works.Build.staticwebassets.json | 427 +++++++-------- ...ts_PublishMinimal_Works.Publish.files.json | 294 ++++++----- ...Minimal_Works.Publish.staticwebassets.json | 332 ++++++------ ...iles_AsAssets.Publish.staticwebassets.json | 310 +++++------ ..._Hosted_Works.Publish.staticwebassets.json | 310 +++++------ .../WasmBuildIncrementalismTest.cs | 17 +- .../WasmCompressionTests.cs | 4 +- ...rosoft.NET.Sdk.WebAssembly.Current.targets | 44 +- 28 files changed, 3462 insertions(+), 3801 deletions(-) delete mode 100644 src/StaticWebAssetsSdk/Tasks/CompressionConfiguration.cs diff --git a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets index 15e4dca6f5d6..34ac649fcd75 100644 --- a/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets +++ b/src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets @@ -55,7 +55,6 @@ Copyright (c) .NET Foundation. All rights reserved. true true _GatherBlazorFilesToPublish;$(WasmNestedPublishAppDependsOn) - false diff --git a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets index dcac52d34996..1d55b60acf10 100644 --- a/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets +++ b/src/StaticWebAssetsSdk/Targets/Microsoft.NET.Sdk.StaticWebAssets.Compression.targets @@ -17,13 +17,17 @@ Copyright (c) .NET Foundation. All rights reserved. - $(GlobalCompressionExcludePattern) + $(BuildCompressionFormats);gzip + $(PublishCompressionFormats);gzip;brotli + false + $(CompressionIncludePatterns) + $(CompressionExcludePatterns) $(ResolveCompressedFilesDependsOn) $(ResolveCompressedFilesForPublishDependsOn) - $(CompressFilesDependsOn); + $(CompressFilesDependsOn) $(CompressFilesForPublishDependsOn) @@ -58,15 +62,16 @@ Copyright (c) .NET Foundation. All rights reserved. + DependsOnTargets="$(ResolveCompressedFilesDependsOn)" + Condition="'$(DisableBuildCompression)' != 'true'"> + OutputPath="$(IntermediateOutputPath)\compressed"> - + + DependsOnTargets="$(ResolveCompressedFilesForPublishDependsOn)" + Condition="'$(DisableBuildCompression)' != 'true'"> <_CandidateAssetsForPublish @@ -92,11 +98,11 @@ Copyright (c) .NET Foundation. All rights reserved. + OutputPath="$(IntermediateOutputPath)\compressed\publish"> - + + DependsOnTargets="$(CompressFilesDependsOn)" + Condition="'$(DisableBuildCompression)' != 'true'"> <_GZipCompressedStaticWebAssets Include="@(_CompressedStaticWebAssets)" Condition="'%(AssetTraitName)' == 'Content-Encoding' and '%(AssetTraitValue)' == 'gzip'" /> @@ -137,7 +144,8 @@ Copyright (c) .NET Foundation. All rights reserved. + DependsOnTargets="$(CompressFilesForPublishDependsOn)" + Condition="'$(DisableBuildCompression)' != 'true'"> <_GZipCompressedStaticWebAssetsForPublish Include="@(_CompressedStaticWebAssetsForPublish)" Condition="'%(AssetTraitName)' == 'Content-Encoding' and '%(AssetTraitValue)' == 'gzip'" /> diff --git a/src/StaticWebAssetsSdk/Tasks/CompressionConfiguration.cs b/src/StaticWebAssetsSdk/Tasks/CompressionConfiguration.cs deleted file mode 100644 index 4618b8610239..000000000000 --- a/src/StaticWebAssetsSdk/Tasks/CompressionConfiguration.cs +++ /dev/null @@ -1,139 +0,0 @@ -// Copyright (c) .NET Foundation and contributors. All rights reserved. -// Licensed under the MIT license. See LICENSE file in the project root for full license information. -// - -using System; -using System.IO; -using System.Linq; -using Microsoft.Build.Framework; -using Microsoft.Build.Utilities; -using Microsoft.Extensions.FileSystemGlobbing; - -namespace Microsoft.AspNetCore.StaticWebAssets.Tasks; - -public sealed class CompressionConfiguration -{ - private Matcher _matcher; - private string _includePattern; - private string _excludePattern; - - public string ItemSpec { get; set; } - - public string IncludePattern - { - get => _includePattern; - set - { - _includePattern = value; - - // Reset the Matcher because the pattern has changed. - _matcher = null; - } - } - - public string ExcludePattern - { - get => _excludePattern; - set - { - _excludePattern = value; - - // Reset the Matcher because the pattern has changed. - _matcher = null; - } - } - - public string Format { get; set; } - - public string Stage { get; set; } - - public static CompressionConfiguration FromTaskItem(ITaskItem taskItem) - { - var itemSpec = taskItem.ItemSpec; - var includePattern = taskItem.GetMetadata(nameof(IncludePattern)); - var excludePattern = taskItem.GetMetadata(nameof(ExcludePattern)); - var format = taskItem.GetMetadata(nameof(Format)); - var stage = taskItem.GetMetadata(nameof(Stage)); - - if (!CompressionFormat.IsValidCompressionFormat(format)) - { - throw new InvalidOperationException($"Unknown compression format '{format}' for the compression configuration '{itemSpec}'."); - } - - if (!BuildStage.IsValidBuildStage(stage)) - { - throw new InvalidOperationException($"Unknown build stage '{stage}' for the compression configuration '{itemSpec}'."); - } - - return new() - { - ItemSpec = itemSpec, - IncludePattern = includePattern, - ExcludePattern = excludePattern, - Format = format, - Stage = stage, - }; - } - - public bool StageIncludes(string buildStage) - => BuildStage.IsAll(Stage) - || string.Equals(Stage, buildStage, StringComparison.OrdinalIgnoreCase); - - public ITaskItem ToTaskItem() - { - var taskItem = new TaskItem(ItemSpec); - taskItem.SetMetadata(nameof(IncludePattern), IncludePattern); - taskItem.SetMetadata(nameof(ExcludePattern), ExcludePattern); - taskItem.SetMetadata(nameof(Format), Format); - taskItem.SetMetadata(nameof(Stage), Stage); - return taskItem; - } - - public bool Matches(string relativePath) - { - if (_matcher is null) - { - _matcher = new Matcher(); - var includePatterns = SplitPattern(IncludePattern); - var excludePatterns = SplitPattern(ExcludePattern); - _matcher.AddIncludePatterns(includePatterns); - _matcher.AddExcludePatterns(excludePatterns); - } - - return _matcher.Match(relativePath).HasMatches; - - static string[] SplitPattern(string pattern) - => string.IsNullOrEmpty(pattern) ? Array.Empty() : pattern - .Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries) - .Select(s => s.Trim()) - .ToArray(); - } - - public static class BuildStage - { - public const string Build = nameof(Build); - public const string Publish = nameof(Publish); - public const string All = nameof(All); - - public static bool IsBuild(string buildStage) => string.Equals(Build, buildStage, StringComparison.OrdinalIgnoreCase); - public static bool IsPublish(string buildStage) => string.Equals(Publish, buildStage, StringComparison.OrdinalIgnoreCase); - public static bool IsAll(string buildStage) => string.Equals(All, buildStage, StringComparison.OrdinalIgnoreCase); - - public static bool IsValidBuildStage(string buildStage) - => IsBuild(buildStage) - || IsPublish(buildStage) - || IsAll(buildStage); - } - - public static class CompressionFormat - { - public const string Gzip = nameof(Gzip); - public const string Brotli = nameof(Brotli); - - public static bool IsGzip(string format) => string.Equals(Gzip, format, StringComparison.OrdinalIgnoreCase); - public static bool IsBrotli(string format) => string.Equals(Brotli, format, StringComparison.OrdinalIgnoreCase); - public static bool IsValidCompressionFormat(string format) - => IsGzip(format) - || IsBrotli(format); - } -} diff --git a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs index 28d7b7442797..e8c3e695c519 100644 --- a/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs +++ b/src/StaticWebAssetsSdk/Tasks/ResolveCompressedAssets.cs @@ -7,25 +7,31 @@ using System.Linq; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; +using Microsoft.Extensions.FileSystemGlobbing; using Microsoft.NET.Sdk.WebAssembly; namespace Microsoft.AspNetCore.StaticWebAssets.Tasks; public class ResolveCompressedAssets : Task { + private const string GzipAssetTraitValue = "gzip"; + private const string BrotliAssetTraitValue = "br"; + + private const string GzipFormatName = "gzip"; + private const string BrotliFormatName = "brotli"; + public ITaskItem[] CandidateAssets { get; set; } - public ITaskItem[] CompressionConfigurations { get; set; } + public string Formats { get; set; } - public ITaskItem[] ExplicitAssets { get; set; } + public string IncludePatterns { get; set; } - public string GlobalExcludePattern { get; set; } + public string ExcludePatterns { get; set; } - [Required] - public string Stage { get; set; } + public ITaskItem[] ExplicitAssets { get; set; } [Required] - public string OutputBasePath { get; set; } + public string OutputPath { get; set; } [Output] public ITaskItem[] AssetsToCompress { get; set; } @@ -41,11 +47,11 @@ public override bool Execute() return true; } - if (CompressionConfigurations is null) + if (string.IsNullOrEmpty(Formats)) { Log.LogMessage( MessageImportance.Low, - "Skipping task '{0}' because no compression configurations were specified.", + "Skipping task '{0}' because no compression formats were specified.", nameof(ResolveCompressedAssets)); return true; } @@ -72,62 +78,33 @@ public override bool Execute() existingCompressionFormatsByAssetItemSpec.Add(relatedAssetItemSpec, existingFormats); } - var compressionFormat = asset.GetMetadata("AssetTraitValue"); + var assetTraitValue = asset.GetMetadata("AssetTraitValue"); - if (!CompressionConfiguration.CompressionFormat.IsValidCompressionFormat(compressionFormat)) + if (!IsValidCompressionAssetTraitValue(assetTraitValue)) { Log.LogError( "The asset '{0}' has an unknown compression format '{1}'.", asset.ItemSpec, - compressionFormat); + assetTraitValue); } - existingFormats.Add(compressionFormat); + Log.LogMessage( + "The asset '{0}' with related asset '{1}' was detected as already compressed with format '{2}'.", + asset.ItemSpec, + relatedAssetItemSpec, + assetTraitValue); + existingFormats.Add(assetTraitValue); } } - // Generate internal representations of each compression configuration. - var compressionConfigurations = CompressionConfigurations - .Select(CompressionConfiguration.FromTaskItem) - .Where(cc => cc.StageIncludes(Stage)) - .ToArray(); - var candidateAssetsByConfigurationName = compressionConfigurations - .ToDictionary(cc => cc.ItemSpec, _ => new List()); + var includePatterns = SplitPattern(IncludePatterns); + var excludePatterns = SplitPattern(ExcludePatterns); - // If specified, add the global exclude pattern to each configuration. - if (!string.IsNullOrEmpty(GlobalExcludePattern)) - { - var delimitedGlobalExcludePattern = $";{GlobalExcludePattern}"; - foreach (var configuration in compressionConfigurations) - { - configuration.ExcludePattern += delimitedGlobalExcludePattern; - } - } + var matcher = new Matcher(); + matcher.AddIncludePatterns(includePatterns); + matcher.AddExcludePatterns(excludePatterns); - // Add each explicitly-provided asset as a candidate asset for its specified compression configuration. - if (ExplicitAssets is not null) - { - foreach (var asset in ExplicitAssets) - { - var configurationName = asset.GetMetadata("ConfigurationName"); - if (candidateAssetsByConfigurationName.TryGetValue(configurationName, out var candidateAssets)) - { - candidateAssets.Add(asset); - Log.LogMessage( - "Explicitly-specified compressed asset '{0}' matches compression configuration '{1}'.", - asset.ItemSpec, - configurationName); - } - else - { - Log.LogMessage( - "Skipping explicitly-specified compressed asset '{0}' with compression configuration '{1}' not included in stage '{2}'.", - asset.ItemSpec, - configurationName, - Stage); - } - } - } + var matchingCandidateAssets = new List(); // Add each candidate asset to each compression configuration with a matching pattern. foreach (var asset in CandidateAssets) @@ -142,46 +119,43 @@ public override bool Execute() } var relativePath = asset.GetMetadata("RelativePath"); + var match = matcher.Match(relativePath); - foreach (var configuration in compressionConfigurations) + if (!match.HasMatches) { - if (configuration.Matches(relativePath)) - { - var candidateAssets = candidateAssetsByConfigurationName[configuration.ItemSpec]; - candidateAssets.Add(asset); - - Log.LogMessage( - MessageImportance.Low, - "Asset '{0}' with relative path '{1}' matched compression configuration '{2}' with include pattern '{3}' and exclude pattern '{4}'.", - asset.ItemSpec, - relativePath, - configuration.ItemSpec, - configuration.IncludePattern, - configuration.ExcludePattern); - } - else - { - Log.LogMessage( - MessageImportance.Low, - "Asset '{0}' with relative path '{1}' did not match compression configuration '{2}' with include pattern '{3}' and exclude pattern '{4}'.", - asset.ItemSpec, - relativePath, - configuration.ItemSpec, - configuration.IncludePattern, - configuration.ExcludePattern); - } + Log.LogMessage( + MessageImportance.Low, + "Asset '{0}' with relative path '{1}' did not match include pattern '{2}' or matched exclude pattern '{3}'.", + asset.ItemSpec, + relativePath, + IncludePatterns, + ExcludePatterns); + continue; } + + Log.LogMessage( + MessageImportance.Low, + "Asset '{0}' with relative path '{1}' matched include pattern '{2}' and did not match exclude pattern '{3}'.", + asset.ItemSpec, + relativePath, + IncludePatterns, + ExcludePatterns); + matchingCandidateAssets.Add(asset); + } + + // Consider each explicitly-provided asset to be a matching asset. + if (ExplicitAssets is not null) + { + matchingCandidateAssets.AddRange(ExplicitAssets); } // Process the final set of candidate assets, deduplicating assets to be compressed in the same format multiple times and // generating new a static web asset definition for each compressed item. + var formats = SplitPattern(Formats); var assetsToCompress = new List(); - foreach (var configuration in compressionConfigurations) + foreach (var format in formats) { - var candidateAssets = candidateAssetsByConfigurationName[configuration.ItemSpec]; - var targetDirectory = ComputeOutputPath(configuration.Format); - - foreach (var asset in candidateAssets) + foreach (var asset in matchingCandidateAssets) { var itemSpec = asset.ItemSpec; if (!existingCompressionFormatsByAssetItemSpec.TryGetValue(itemSpec, out var existingFormats)) @@ -190,7 +164,6 @@ public override bool Execute() existingCompressionFormatsByAssetItemSpec.Add(itemSpec, existingFormats); } - var format = configuration.Format; if (existingFormats.Contains(format)) { Log.LogMessage( @@ -200,14 +173,15 @@ public override bool Execute() continue; } - if (TryCreateCompressedAsset(asset, targetDirectory, configuration.Format, out var compressedAsset)) + if (TryCreateCompressedAsset(asset, format, out var compressedAsset)) { assetsToCompress.Add(compressedAsset); existingFormats.Add(format); Log.LogMessage( - "Created compressed asset '{0}'.", - compressedAsset.ItemSpec); + "Created compressed asset '{0}' for '{1}'.", + compressedAsset.ItemSpec, + itemSpec); } else { @@ -226,22 +200,32 @@ public override bool Execute() private static bool IsCompressedAsset(ITaskItem asset) => string.Equals("Content-Encoding", asset.GetMetadata("AssetTraitName")); - private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, string format, out TaskItem result) + private static bool IsValidCompressionAssetTraitValue(string assetTraitValue) + => string.Equals(GzipAssetTraitValue, assetTraitValue, StringComparison.OrdinalIgnoreCase) + || string.Equals(BrotliAssetTraitValue, assetTraitValue, StringComparison.OrdinalIgnoreCase); + + private static string[] SplitPattern(string pattern) + => string.IsNullOrEmpty(pattern) ? Array.Empty() : pattern + .Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries) + .Select(s => s.Trim()) + .ToArray(); + + private bool TryCreateCompressedAsset(ITaskItem asset, string format, out TaskItem result) { result = null; string fileExtension; string assetTraitValue; - if (CompressionConfiguration.CompressionFormat.IsGzip(format)) + if (string.Equals(GzipFormatName, format, StringComparison.OrdinalIgnoreCase)) { fileExtension = ".gz"; - assetTraitValue = "gzip"; + assetTraitValue = GzipAssetTraitValue; } - else if (CompressionConfiguration.CompressionFormat.IsBrotli(format)) + else if (string.Equals(BrotliFormatName, format, StringComparison.OrdinalIgnoreCase)) { fileExtension = ".br"; - assetTraitValue = "br"; + assetTraitValue = BrotliAssetTraitValue; } else { @@ -256,7 +240,7 @@ private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, s var relativePath = asset.GetMetadata("RelativePath"); var fileName = FileHasher.GetFileHash(originalItemSpec) + fileExtension; - var outputRelativePath = Path.Combine(targetDirectory, fileName); + var outputRelativePath = Path.Combine(OutputPath, fileName); result = new TaskItem(outputRelativePath, asset.CloneCustomMetadata()); @@ -270,40 +254,4 @@ private bool TryCreateCompressedAsset(ITaskItem asset, string targetDirectory, s return true; } - - public string ComputeOutputPath(string format) - { - if (ComputeOutputSubdirectory() is { } outputSubdirectory) - { - return Path.Combine(OutputBasePath, outputSubdirectory); - } - - throw new InvalidOperationException($"Could not compute the compression output subdirectory for stage '{Stage}' and format '{format}'."); - - string ComputeOutputSubdirectory() - { - // TODO: Let's change the output directory to be compressed\[publish]\ - if (CompressionConfiguration.BuildStage.IsBuild(Stage)) - { - if (CompressionConfiguration.CompressionFormat.IsGzip(format)) - { - return "build-gz"; - } - - if (CompressionConfiguration.CompressionFormat.IsBrotli(format)) - { - return "build-br"; - } - - return null; - } - - if (CompressionConfiguration.BuildStage.IsPublish(Stage)) - { - return "compress"; - } - - return null; - } - } } diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs index 73cb84be31bf..23790b47a2b9 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs @@ -46,58 +46,29 @@ public void ResolvesExplicitlyProvidedAssets() RelativePath = Path.GetFileName(ItemSpec), }.ToTaskItem(); - var gzipCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionGzip", - Format = "gzip", - Stage = "Build", - }.ToTaskItem(); - - var brotliCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionBrotli", - Format = "brotli", - Stage = "Publish", - }.ToTaskItem(); - var gzipExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); gzipExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionGzip"); var brotliExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); brotliExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionBrotli"); - var buildTask = new ResolveCompressedAssets() - { - OutputBasePath = OutputBasePath, - BuildEngine = buildEngine.Object, - CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, - ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, - Stage = "Build", - }; - - var publishTask = new ResolveCompressedAssets() + var task = new ResolveCompressedAssets() { - OutputBasePath = OutputBasePath, + OutputPath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + Formats = "gzip;brotli", ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, - Stage = "Publish", }; // Act - var buildResult = buildTask.Execute(); - var publishResult = publishTask.Execute(); + var result = task.Execute(); // Assert - buildResult.Should().BeTrue(); - buildTask.AssetsToCompress.Should().HaveCount(1); - buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); - - publishResult.Should().BeTrue(); - publishTask.AssetsToCompress.Should().HaveCount(1); - publishTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + result.Should().BeTrue(); + task.AssetsToCompress.Should().HaveCount(2); + task.AssetsToCompress[0].ItemSpec.Should().EndWith(".gz"); + task.AssetsToCompress[1].ItemSpec.Should().EndWith(".br"); } [Fact] @@ -116,52 +87,23 @@ public void ResolvesAssetsMatchingIncludePattern() RelativePath = Path.GetFileName(ItemSpec), }.ToTaskItem(); - var gzipCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionGzip", - IncludePattern = "**\\*.tmp", - Format = "gzip", - Stage = "Build", - }.ToTaskItem(); - - var brotliCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionBrotli", - IncludePattern = "**\\*.tmp", - Format = "brotli", - Stage = "Publish", - }.ToTaskItem(); - - var buildTask = new ResolveCompressedAssets() - { - OutputBasePath = OutputBasePath, - BuildEngine = buildEngine.Object, - CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, - Stage = "Build", - }; - - var publishTask = new ResolveCompressedAssets() + var task = new ResolveCompressedAssets() { - OutputBasePath = OutputBasePath, + OutputPath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, - Stage = "Publish", + IncludePatterns = "**\\*.tmp", + Formats = "gzip;brotli", }; // Act - var buildResult = buildTask.Execute(); - var publishResult = publishTask.Execute(); + var result = task.Execute(); // Assert - buildResult.Should().BeTrue(); - buildTask.AssetsToCompress.Should().HaveCount(1); - buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); - - publishResult.Should().BeTrue(); - publishTask.AssetsToCompress.Should().HaveCount(1); - publishTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + result.Should().BeTrue(); + task.AssetsToCompress.Should().HaveCount(2); + task.AssetsToCompress[0].ItemSpec.Should().EndWith(".gz"); + task.AssetsToCompress[1].ItemSpec.Should().EndWith(".br"); } [Fact] @@ -180,105 +122,22 @@ public void ExcludesAssetsMatchingExcludePattern() RelativePath = Path.GetFileName(ItemSpec), }.ToTaskItem(); - var gzipCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionGzip", - IncludePattern = "**\\*.tmp", - Format = "gzip", - Stage = "Build", - }.ToTaskItem(); - - var brotliCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionBrotli", - IncludePattern = "**\\*", - ExcludePattern = "**\\*.tmp", - Format = "brotli", - Stage = "Publish", - }.ToTaskItem(); - - var buildTask = new ResolveCompressedAssets() + var task = new ResolveCompressedAssets() { - OutputBasePath = OutputBasePath, + OutputPath = OutputBasePath, BuildEngine = buildEngine.Object, + IncludePatterns = "**\\*", + ExcludePatterns = "**\\*.tmp", CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, - Stage = "Build", - }; - - var publishTask = new ResolveCompressedAssets() - { - OutputBasePath = OutputBasePath, - BuildEngine = buildEngine.Object, - CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, - Stage = "Publish", + Formats = "gzip;brotli" }; // Act - var buildResult = buildTask.Execute(); - var publishResult = publishTask.Execute(); + var result = task.Execute(); // Assert - buildResult.Should().BeTrue(); - buildTask.AssetsToCompress.Should().HaveCount(1); - buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); - - publishResult.Should().BeTrue(); - publishTask.AssetsToCompress.Should().BeEmpty(); - } - - [Fact] - public void ExcludesAssetsMatchingGlobalExcludePattern() - { - // Arrange - var errorMessages = new List(); - var buildEngine = new Mock(); - buildEngine.Setup(e => e.LogErrorEvent(It.IsAny())) - .Callback(args => errorMessages.Add(args.Message)); - - var asset = new StaticWebAsset() - { - Identity = ItemSpec, - OriginalItemSpec = OriginalItemSpec, - RelativePath = Path.GetFileName(ItemSpec), - }.ToTaskItem(); - - var excludedAssetItemSpec = Path.Combine(OutputBasePath, Guid.NewGuid().ToString("N") + ".exclude.tmp"); - var excludedAssetOriginalItemSpec = Path.Combine(OutputBasePath, Guid.NewGuid().ToString("N") + ".exclude.tmp"); - - var assetToExclude = new StaticWebAsset() - { - Identity = excludedAssetItemSpec, - OriginalItemSpec = excludedAssetOriginalItemSpec, - RelativePath = Path.GetFileName(excludedAssetItemSpec), - }.ToTaskItem(); - - var gzipCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionGzip", - IncludePattern = "**\\*.tmp", - Format = "gzip", - Stage = "Build", - }.ToTaskItem(); - - var buildTask = new ResolveCompressedAssets() - { - OutputBasePath = OutputBasePath, - BuildEngine = buildEngine.Object, - CandidateAssets = new[] { asset, assetToExclude }, - CompressionConfigurations = new[] { gzipCompressionConfiguration }, - GlobalExcludePattern = "**\\*.exclude.tmp", - Stage = "Build", - }; - - // Act - var buildResult = buildTask.Execute(); - - // Assert - buildResult.Should().BeTrue(); - buildTask.AssetsToCompress.Should().HaveCount(1); - buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + result.Should().BeTrue(); + task.AssetsToCompress.Should().HaveCount(0); } [Fact] @@ -297,22 +156,6 @@ public void DeduplicatesAssetsResolvedBothExplicitlyAndFromPattern() RelativePath = Path.GetFileName(ItemSpec), }.ToTaskItem(); - var gzipCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionGzip", - IncludePattern = "**\\*.tmp", - Format = "gzip", - Stage = "Build", - }.ToTaskItem(); - - var brotliCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionBrotli", - IncludePattern = "**\\*.tmp", - Format = "brotli", - Stage = "Publish", - }.ToTaskItem(); - var gzipExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); gzipExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionGzip"); @@ -321,36 +164,22 @@ public void DeduplicatesAssetsResolvedBothExplicitlyAndFromPattern() var buildTask = new ResolveCompressedAssets() { - OutputBasePath = OutputBasePath, - BuildEngine = buildEngine.Object, - CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, - ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, - Stage = "Build", - }; - - var publishTask = new ResolveCompressedAssets() - { - OutputBasePath = OutputBasePath, + OutputPath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + IncludePatterns = "**\\*.tmp", ExplicitAssets = new[] { gzipExplicitAsset, brotliExplicitAsset }, - Stage = "Publish", + Formats = "gzip;brotli" }; // Act var buildResult = buildTask.Execute(); - var publishResult = publishTask.Execute(); // Assert buildResult.Should().BeTrue(); - buildTask.AssetsToCompress.Should().HaveCount(1); - buildTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); - - publishResult.Should().BeTrue(); - publishTask.AssetsToCompress.Should().HaveCount(1); - publishTask.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + buildTask.AssetsToCompress.Should().HaveCount(2); + buildTask.AssetsToCompress[0].ItemSpec.Should().EndWith(".gz"); + buildTask.AssetsToCompress[1].ItemSpec.Should().EndWith(".br"); } [Fact] @@ -369,54 +198,39 @@ public void IgnoresAssetsCompressedInPreviousTaskRun() RelativePath = Path.GetFileName(ItemSpec), }.ToTaskItem(); - var gzipCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionGzip", - IncludePattern = "**\\*.tmp", - Format = "gzip", - Stage = "All", - }.ToTaskItem(); - - var brotliCompressionConfiguration = new CompressionConfiguration() - { - ItemSpec = "BuildCompressionBrotli", - Format = "brotli", - Stage = "Publish", - }.ToTaskItem(); - // Act/Assert var task1 = new ResolveCompressedAssets() { - OutputBasePath = OutputBasePath, + OutputPath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, - Stage = "Build", + IncludePatterns = "**\\*.tmp", + Formats = "gzip", }; var result1 = task1.Execute(); result1.Should().BeTrue(); task1.AssetsToCompress.Should().HaveCount(1); - task1.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "build-gz")).And.EndWith(".gz"); + task1.AssetsToCompress[0].ItemSpec.Should().EndWith(".gz"); var brotliExplicitAsset = new TaskItem(asset.ItemSpec, asset.CloneCustomMetadata()); brotliExplicitAsset.SetMetadata("ConfigurationName", "BuildCompressionBrotli"); var task2 = new ResolveCompressedAssets() { - OutputBasePath = OutputBasePath, + OutputPath = OutputBasePath, BuildEngine = buildEngine.Object, CandidateAssets = new[] { asset, task1.AssetsToCompress[0] }, - CompressionConfigurations = new[] { gzipCompressionConfiguration, brotliCompressionConfiguration }, + IncludePatterns = "**\\*.tmp", ExplicitAssets = new[] { brotliExplicitAsset }, - Stage = "Publish", + Formats = "gzip;brotli" }; var result2 = task2.Execute(); result2.Should().BeTrue(); task2.AssetsToCompress.Should().HaveCount(1); - task2.AssetsToCompress[0].ItemSpec.Should().StartWith(Path.Combine(OutputBasePath, "compress")).And.EndWith(".br"); + task2.AssetsToCompress[0].ItemSpec.Should().EndWith(".br"); } } diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json index ce36541c2f56..8f1d603c88f4 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json @@ -3434,7 +3434,7 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3451,7 +3451,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3468,7 +3468,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3485,7 +3485,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3502,7 +3502,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3519,7 +3519,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3536,7 +3536,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3553,7 +3553,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3570,7 +3570,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3587,7 +3587,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3604,7 +3604,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3621,7 +3621,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3638,7 +3638,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3655,7 +3655,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3672,7 +3672,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3689,7 +3689,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3706,7 +3706,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3723,7 +3723,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3740,7 +3740,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3757,7 +3757,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3774,7 +3774,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3791,7 +3791,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3808,7 +3808,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3825,7 +3825,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3842,7 +3842,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3859,7 +3859,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3876,7 +3876,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3893,7 +3893,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3910,7 +3910,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3927,7 +3927,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3944,7 +3944,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3961,7 +3961,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3978,7 +3978,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3995,7 +3995,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4012,7 +4012,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4029,7 +4029,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4046,7 +4046,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4063,7 +4063,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4080,7 +4080,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4097,7 +4097,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4114,7 +4114,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4131,7 +4131,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4148,7 +4148,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4165,7 +4165,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4182,7 +4182,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4199,7 +4199,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4216,7 +4216,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4233,7 +4233,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4250,7 +4250,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4267,7 +4267,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4284,7 +4284,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4301,7 +4301,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4318,7 +4318,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4335,7 +4335,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4352,7 +4352,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4369,7 +4369,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4386,7 +4386,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4403,7 +4403,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4420,7 +4420,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4437,7 +4437,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4454,7 +4454,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4471,7 +4471,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4488,7 +4488,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4505,7 +4505,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4522,7 +4522,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4539,7 +4539,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4556,7 +4556,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4573,7 +4573,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4590,7 +4590,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4607,7 +4607,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4624,7 +4624,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4641,7 +4641,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4658,7 +4658,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4675,7 +4675,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4692,7 +4692,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4709,7 +4709,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4726,7 +4726,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4743,7 +4743,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4760,7 +4760,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4777,7 +4777,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4794,7 +4794,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4811,7 +4811,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4828,7 +4828,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4845,7 +4845,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4862,7 +4862,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4879,7 +4879,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4896,7 +4896,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4913,7 +4913,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4930,7 +4930,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4947,7 +4947,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4964,7 +4964,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4981,7 +4981,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4998,7 +4998,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5015,7 +5015,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5032,7 +5032,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5049,7 +5049,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5066,7 +5066,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5083,7 +5083,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5100,7 +5100,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5117,7 +5117,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5134,7 +5134,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5151,7 +5151,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5168,7 +5168,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5185,7 +5185,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5202,7 +5202,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5219,7 +5219,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5236,7 +5236,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5253,7 +5253,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5270,7 +5270,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5287,7 +5287,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5304,7 +5304,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5321,7 +5321,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5338,7 +5338,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5355,7 +5355,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5372,7 +5372,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5389,7 +5389,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5406,7 +5406,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5423,7 +5423,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5440,7 +5440,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5457,7 +5457,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5474,7 +5474,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5491,7 +5491,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5508,7 +5508,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5525,7 +5525,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5542,7 +5542,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5559,7 +5559,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5576,7 +5576,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5593,7 +5593,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5610,7 +5610,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5627,7 +5627,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5644,7 +5644,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5661,7 +5661,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5678,7 +5678,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5695,7 +5695,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5712,7 +5712,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5729,7 +5729,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5746,7 +5746,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5763,7 +5763,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5780,7 +5780,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5797,7 +5797,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5814,7 +5814,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5831,7 +5831,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5848,7 +5848,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5865,7 +5865,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5882,7 +5882,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5899,7 +5899,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5916,7 +5916,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5933,7 +5933,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5950,7 +5950,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5967,7 +5967,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5984,7 +5984,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6001,7 +6001,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6018,7 +6018,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6035,7 +6035,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6052,7 +6052,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6069,7 +6069,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6086,7 +6086,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6103,7 +6103,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6120,7 +6120,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6137,7 +6137,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6154,7 +6154,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6171,7 +6171,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6188,7 +6188,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6205,7 +6205,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6222,7 +6222,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6239,7 +6239,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6256,7 +6256,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6273,7 +6273,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6290,7 +6290,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6307,7 +6307,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6324,7 +6324,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6341,7 +6341,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6358,7 +6358,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6375,7 +6375,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6392,7 +6392,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6409,7 +6409,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6426,7 +6426,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6443,7 +6443,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6460,7 +6460,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6477,7 +6477,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6494,7 +6494,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6511,7 +6511,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6528,7 +6528,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6545,7 +6545,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6562,7 +6562,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6579,7 +6579,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6596,7 +6596,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6613,7 +6613,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6630,7 +6630,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6647,7 +6647,24 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.boot.json.gz", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/blazor.boot.json.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.boot.json.gz" + }, + { + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6664,7 +6681,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6681,7 +6698,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6698,7 +6715,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6715,7 +6732,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6732,7 +6749,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6749,7 +6766,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6766,7 +6783,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6783,7 +6800,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6800,7 +6817,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6817,7 +6834,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6885,4 +6902,4 @@ "OriginalItemSpec": "wwwroot\\index.html" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json index 1ba73db330dc..6d11e4ee7916 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json @@ -234,240 +234,241 @@ "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll", "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\blazorwasm.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", - "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CodeAnalysis.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.boot.json.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt.dat.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ja\\blazorwasm.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build", "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", @@ -857,6 +858,7 @@ "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll", "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll.gz", "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json index f2f9fefa6bc9..b36cccd266af 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json @@ -4076,7 +4076,7 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4093,7 +4093,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4110,7 +4110,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4127,7 +4127,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4144,7 +4144,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4161,7 +4161,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4178,7 +4178,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4195,7 +4195,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4212,7 +4212,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CodeAnalysis.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4229,7 +4229,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4246,7 +4246,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4263,7 +4263,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4280,7 +4280,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4297,7 +4297,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4314,7 +4314,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4331,7 +4331,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4348,7 +4348,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4365,7 +4365,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4382,7 +4382,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4399,7 +4399,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4416,7 +4416,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4433,7 +4433,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4450,7 +4450,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4467,7 +4467,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4484,7 +4484,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4501,7 +4501,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4518,7 +4518,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4535,7 +4535,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4552,7 +4552,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4569,7 +4569,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4586,7 +4586,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4603,7 +4603,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4620,7 +4620,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4637,7 +4637,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4654,7 +4654,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4671,7 +4671,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4688,7 +4688,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4705,7 +4705,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4722,7 +4722,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4739,7 +4739,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4756,7 +4756,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4773,7 +4773,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4790,7 +4790,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4807,7 +4807,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4824,7 +4824,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4841,7 +4841,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4858,7 +4858,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4875,7 +4875,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4892,7 +4892,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4909,7 +4909,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4926,7 +4926,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4943,7 +4943,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4960,7 +4960,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4977,7 +4977,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4994,7 +4994,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5011,7 +5011,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5028,7 +5028,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5045,7 +5045,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5062,7 +5062,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5079,7 +5079,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5096,7 +5096,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5113,7 +5113,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5130,7 +5130,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5147,7 +5147,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5164,7 +5164,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5181,7 +5181,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5198,7 +5198,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5215,7 +5215,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5232,7 +5232,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5249,7 +5249,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5266,7 +5266,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5283,7 +5283,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5300,7 +5300,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5317,7 +5317,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5334,7 +5334,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5351,7 +5351,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5368,7 +5368,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5385,7 +5385,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5402,7 +5402,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5419,7 +5419,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5436,7 +5436,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5453,7 +5453,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5470,7 +5470,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5487,7 +5487,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5504,7 +5504,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5521,7 +5521,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5538,7 +5538,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5555,7 +5555,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5572,7 +5572,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5589,7 +5589,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5606,7 +5606,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5623,7 +5623,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5640,7 +5640,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5657,7 +5657,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5674,7 +5674,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5691,7 +5691,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5708,7 +5708,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5725,7 +5725,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5742,7 +5742,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5759,7 +5759,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5776,7 +5776,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5793,7 +5793,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5810,7 +5810,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5827,7 +5827,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5844,7 +5844,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5861,7 +5861,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5878,7 +5878,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5895,7 +5895,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5912,7 +5912,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5929,7 +5929,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5946,7 +5946,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5963,7 +5963,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5980,7 +5980,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5997,7 +5997,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6014,7 +6014,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6031,7 +6031,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6048,7 +6048,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6065,7 +6065,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6082,7 +6082,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6099,7 +6099,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6116,7 +6116,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6133,7 +6133,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6150,7 +6150,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6167,7 +6167,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6184,7 +6184,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6201,7 +6201,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6218,7 +6218,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6235,7 +6235,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6252,7 +6252,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6269,7 +6269,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6286,7 +6286,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6303,7 +6303,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6320,7 +6320,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6337,7 +6337,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6354,7 +6354,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6371,7 +6371,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6388,7 +6388,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6405,7 +6405,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6422,7 +6422,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6439,7 +6439,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6456,7 +6456,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6473,7 +6473,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6490,7 +6490,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6507,7 +6507,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6524,7 +6524,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6541,7 +6541,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6558,7 +6558,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6575,7 +6575,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6592,7 +6592,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6609,7 +6609,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6626,7 +6626,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6643,7 +6643,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6660,7 +6660,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6677,7 +6677,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6694,7 +6694,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6711,7 +6711,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6728,7 +6728,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6745,7 +6745,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6762,7 +6762,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6779,7 +6779,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6796,7 +6796,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6813,7 +6813,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6830,7 +6830,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6847,7 +6847,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6864,7 +6864,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6881,7 +6881,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6898,7 +6898,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6915,7 +6915,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6932,7 +6932,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6949,7 +6949,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6966,7 +6966,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6983,7 +6983,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7000,7 +7000,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7017,7 +7017,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7034,7 +7034,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7051,7 +7051,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7068,7 +7068,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7085,7 +7085,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7102,7 +7102,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7119,7 +7119,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7136,7 +7136,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7153,7 +7153,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7170,7 +7170,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7187,7 +7187,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7204,7 +7204,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7221,7 +7221,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7238,7 +7238,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7255,7 +7255,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7272,7 +7272,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7289,7 +7289,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7306,7 +7306,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7323,7 +7323,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7340,7 +7340,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7357,7 +7357,24 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.boot.json.gz", + "SourceId": "blazorwasm", + "SourceType": "Computed", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/blazor.boot.json.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.boot.json.gz" + }, + { + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7374,7 +7391,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7391,7 +7408,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7408,7 +7425,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\classlibrarywithsatelliteassemblies.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7425,7 +7442,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7442,7 +7459,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7459,7 +7476,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7476,7 +7493,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7493,7 +7510,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7510,7 +7527,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7527,7 +7544,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7544,7 +7561,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7561,7 +7578,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7578,7 +7595,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7595,7 +7612,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7612,7 +7629,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7629,7 +7646,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7646,7 +7663,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7663,7 +7680,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7680,7 +7697,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7697,7 +7714,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7714,7 +7731,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7731,7 +7748,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7748,7 +7765,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7765,7 +7782,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\blazorwasm.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ja\\blazorwasm.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7782,7 +7799,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\blazorwasm.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7799,7 +7816,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7816,7 +7833,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7833,7 +7850,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7850,7 +7867,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7867,7 +7884,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7884,7 +7901,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7901,7 +7918,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7918,7 +7935,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7935,7 +7952,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7952,7 +7969,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7969,7 +7986,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7986,7 +8003,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -8003,7 +8020,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -8020,7 +8037,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -8037,7 +8054,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz", "SourceId": "blazorwasm", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -8207,4 +8224,4 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json index ed904a36e786..c0235b11235d 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json @@ -11,8 +11,8 @@ "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", - "AdditionalPublishProperties": "BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true;_PublishingBlazorWasmProject=true", - "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework", + "AdditionalPublishProperties": "_PublishingBlazorWasmProject=true;BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true", + "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;WebPublishProfileFile;TargetFramework", "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems", "AdditionalBuildProperties": "", "AdditionalBuildPropertiesToRemove": "RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework" @@ -3515,7 +3515,7 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3532,7 +3532,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3549,7 +3549,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3566,7 +3566,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3583,7 +3583,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3600,7 +3600,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3617,7 +3617,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3634,7 +3634,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3651,7 +3651,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3668,7 +3668,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3685,7 +3685,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3702,7 +3702,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3719,7 +3719,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3736,7 +3736,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3753,7 +3753,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3770,7 +3770,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3787,7 +3787,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3804,7 +3804,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3821,7 +3821,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3838,7 +3838,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3855,7 +3855,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3872,7 +3872,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3889,7 +3889,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3906,7 +3906,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3923,7 +3923,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3940,7 +3940,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3957,7 +3957,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3974,7 +3974,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3991,7 +3991,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4008,7 +4008,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4025,7 +4025,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4042,7 +4042,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4059,7 +4059,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4076,7 +4076,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4093,7 +4093,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4110,7 +4110,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4127,7 +4127,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4144,7 +4144,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4161,7 +4161,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4178,7 +4178,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4195,7 +4195,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4212,7 +4212,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4229,7 +4229,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4246,7 +4246,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4263,7 +4263,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4280,7 +4280,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4297,7 +4297,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4314,7 +4314,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4331,7 +4331,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4348,7 +4348,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4365,7 +4365,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4382,7 +4382,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4399,7 +4399,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4416,7 +4416,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4433,7 +4433,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4450,7 +4450,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4467,7 +4467,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4484,7 +4484,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4501,7 +4501,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4518,7 +4518,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4535,7 +4535,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4552,7 +4552,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4569,7 +4569,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4586,7 +4586,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4603,7 +4603,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4620,7 +4620,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4637,7 +4637,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4654,7 +4654,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4671,7 +4671,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4688,7 +4688,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4705,7 +4705,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4722,7 +4722,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4739,7 +4739,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4756,7 +4756,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4773,7 +4773,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4790,7 +4790,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4807,7 +4807,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4824,7 +4824,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4841,7 +4841,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4858,7 +4858,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4875,7 +4875,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4892,7 +4892,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4909,7 +4909,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4926,7 +4926,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4943,7 +4943,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4960,7 +4960,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4977,7 +4977,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4994,7 +4994,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5011,7 +5011,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5028,7 +5028,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5045,7 +5045,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5062,7 +5062,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5079,7 +5079,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5096,7 +5096,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5113,7 +5113,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5130,7 +5130,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5147,7 +5147,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5164,7 +5164,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5181,7 +5181,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5198,7 +5198,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5215,7 +5215,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5232,7 +5232,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5249,7 +5249,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5266,7 +5266,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5283,7 +5283,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5300,7 +5300,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5317,7 +5317,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5334,7 +5334,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5351,7 +5351,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5368,7 +5368,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5385,7 +5385,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5402,7 +5402,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5419,7 +5419,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5436,7 +5436,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5453,7 +5453,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5470,7 +5470,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5487,7 +5487,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5504,7 +5504,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5521,7 +5521,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5538,7 +5538,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5555,7 +5555,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5572,7 +5572,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5589,7 +5589,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5606,7 +5606,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5623,7 +5623,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5640,7 +5640,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5657,7 +5657,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5674,7 +5674,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5691,7 +5691,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5708,7 +5708,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5725,7 +5725,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5742,7 +5742,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5759,7 +5759,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5776,7 +5776,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5793,7 +5793,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5810,7 +5810,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5827,7 +5827,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5844,7 +5844,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5861,7 +5861,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5878,7 +5878,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5895,7 +5895,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5912,7 +5912,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5929,7 +5929,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5946,7 +5946,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5963,7 +5963,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5980,7 +5980,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5997,7 +5997,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6014,7 +6014,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6031,7 +6031,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6048,7 +6048,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6065,7 +6065,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6082,7 +6082,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6099,7 +6099,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6116,7 +6116,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6133,7 +6133,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6150,7 +6150,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6167,7 +6167,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6184,7 +6184,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6201,7 +6201,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6218,7 +6218,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6235,7 +6235,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6252,7 +6252,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6269,7 +6269,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6286,7 +6286,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6303,7 +6303,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6320,7 +6320,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6337,7 +6337,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6354,7 +6354,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6371,7 +6371,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6388,7 +6388,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6405,7 +6405,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6422,7 +6422,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6439,7 +6439,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6456,7 +6456,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6473,7 +6473,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6490,7 +6490,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6507,7 +6507,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6524,7 +6524,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6541,7 +6541,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6558,7 +6558,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6575,7 +6575,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6592,7 +6592,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6609,7 +6609,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6626,7 +6626,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6643,7 +6643,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6660,7 +6660,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6677,7 +6677,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6694,7 +6694,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6711,7 +6711,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6728,7 +6728,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6745,7 +6745,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6762,7 +6762,24 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.boot.json.gz", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/blazor.boot.json.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.boot.json.gz" + }, + { + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6779,7 +6796,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6796,7 +6813,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6813,7 +6830,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6830,7 +6847,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6847,7 +6864,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6864,7 +6881,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6881,7 +6898,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6898,7 +6915,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6915,7 +6932,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6932,7 +6949,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7102,4 +7119,4 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json index b140df6d4761..62cf7dab58df 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json @@ -230,153 +230,153 @@ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_bin\\publish.extension.txt.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_bin\\publish.extension.txt.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json index a56f5399bef5..aa673c16c6a6 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json @@ -153,7 +153,7 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -170,7 +170,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -184,10 +184,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -201,10 +201,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -218,10 +218,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_bin\\publish.extension.txt.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -238,7 +238,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_bin\\publish.extension.txt.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -255,7 +255,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -272,7 +272,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -289,7 +289,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -306,7 +306,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -323,7 +323,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -340,7 +340,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -357,7 +357,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -374,7 +374,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -391,7 +391,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -408,7 +408,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -425,7 +425,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -442,7 +442,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -459,7 +459,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -476,7 +476,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -493,7 +493,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -510,7 +510,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -527,7 +527,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -544,7 +544,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -561,7 +561,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -578,7 +578,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -595,7 +595,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -612,7 +612,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -629,7 +629,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -646,7 +646,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -663,7 +663,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -680,7 +680,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -697,7 +697,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -714,7 +714,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -731,7 +731,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -748,7 +748,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -765,7 +765,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -782,7 +782,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -799,7 +799,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -816,7 +816,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -833,7 +833,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -850,7 +850,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -867,7 +867,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -884,7 +884,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -901,7 +901,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -918,7 +918,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -935,7 +935,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -952,7 +952,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -969,7 +969,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -986,7 +986,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1003,7 +1003,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1020,7 +1020,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1037,7 +1037,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1054,7 +1054,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1071,7 +1071,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1088,7 +1088,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1105,7 +1105,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1122,7 +1122,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1139,7 +1139,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1156,7 +1156,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1173,7 +1173,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1190,7 +1190,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1207,7 +1207,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1224,7 +1224,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1241,7 +1241,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1258,7 +1258,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1275,7 +1275,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1292,7 +1292,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1309,7 +1309,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1326,7 +1326,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1343,7 +1343,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1360,7 +1360,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1377,7 +1377,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1394,7 +1394,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1411,7 +1411,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1428,7 +1428,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1445,7 +1445,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1462,7 +1462,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1479,7 +1479,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1496,7 +1496,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1513,7 +1513,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1530,7 +1530,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1547,7 +1547,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1564,7 +1564,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1581,7 +1581,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1598,7 +1598,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1615,7 +1615,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1632,7 +1632,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1649,7 +1649,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1666,7 +1666,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1683,7 +1683,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1700,7 +1700,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1717,7 +1717,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1734,7 +1734,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1751,7 +1751,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1768,7 +1768,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1785,7 +1785,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1802,7 +1802,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1819,7 +1819,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1836,7 +1836,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1853,7 +1853,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1870,7 +1870,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1887,7 +1887,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1904,7 +1904,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1921,7 +1921,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1938,7 +1938,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1955,7 +1955,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1972,7 +1972,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1989,7 +1989,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2006,7 +2006,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2023,7 +2023,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2040,7 +2040,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2057,7 +2057,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2074,7 +2074,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2091,7 +2091,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2108,7 +2108,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2125,7 +2125,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2142,7 +2142,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2159,7 +2159,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2176,7 +2176,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2193,7 +2193,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2210,7 +2210,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2227,7 +2227,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2244,7 +2244,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2261,7 +2261,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2278,7 +2278,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2295,7 +2295,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2312,7 +2312,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2329,7 +2329,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2346,7 +2346,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2363,7 +2363,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2380,7 +2380,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2397,7 +2397,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -2414,7 +2414,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2431,7 +2431,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2448,7 +2448,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2465,7 +2465,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2482,7 +2482,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2499,7 +2499,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2516,7 +2516,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2533,7 +2533,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2550,7 +2550,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2567,7 +2567,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2584,7 +2584,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2601,7 +2601,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2618,7 +2618,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2635,7 +2635,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -3808,4 +3808,4 @@ "OriginalItemSpec": "wwwroot\\index.html" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json index ea3854005ff5..6ecc4396d8fe 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json @@ -227,151 +227,151 @@ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json index 5914c15129ba..a6faca395fb0 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json @@ -153,7 +153,7 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -170,7 +170,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -184,10 +184,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -201,10 +201,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -218,10 +218,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -238,7 +238,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -255,7 +255,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -272,7 +272,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -289,7 +289,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -306,7 +306,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -323,7 +323,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -340,7 +340,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -357,7 +357,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -374,7 +374,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -391,7 +391,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -408,7 +408,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -425,7 +425,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -442,7 +442,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -459,7 +459,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -476,7 +476,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -493,7 +493,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -510,7 +510,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -527,7 +527,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -544,7 +544,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -561,7 +561,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -578,7 +578,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -595,7 +595,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -612,7 +612,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -629,7 +629,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -646,7 +646,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -663,7 +663,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -680,7 +680,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -697,7 +697,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -714,7 +714,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -731,7 +731,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -748,7 +748,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -765,7 +765,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -782,7 +782,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -799,7 +799,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -816,7 +816,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -833,7 +833,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -850,7 +850,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -867,7 +867,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -884,7 +884,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -901,7 +901,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -918,7 +918,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -935,7 +935,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -952,7 +952,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -969,7 +969,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -986,7 +986,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1003,7 +1003,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1020,7 +1020,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1037,7 +1037,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1054,7 +1054,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1071,7 +1071,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1088,7 +1088,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1105,7 +1105,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1122,7 +1122,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1139,7 +1139,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1156,7 +1156,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1173,7 +1173,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1190,7 +1190,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1207,7 +1207,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1224,7 +1224,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1241,7 +1241,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1258,7 +1258,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1275,7 +1275,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1292,7 +1292,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1309,7 +1309,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1326,7 +1326,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1343,7 +1343,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1360,7 +1360,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1377,7 +1377,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1394,7 +1394,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1411,7 +1411,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1428,7 +1428,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1445,7 +1445,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1462,7 +1462,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1479,7 +1479,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1496,7 +1496,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1513,7 +1513,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1530,7 +1530,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1547,7 +1547,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1564,7 +1564,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1581,7 +1581,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1598,7 +1598,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1615,7 +1615,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1632,7 +1632,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1649,7 +1649,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1666,7 +1666,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1683,7 +1683,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1700,7 +1700,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1717,7 +1717,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1734,7 +1734,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1751,7 +1751,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1768,7 +1768,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1785,7 +1785,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1802,7 +1802,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1819,7 +1819,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1836,7 +1836,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1853,7 +1853,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1870,7 +1870,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1887,7 +1887,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1904,7 +1904,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1921,7 +1921,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1938,7 +1938,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1955,7 +1955,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1972,7 +1972,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1989,7 +1989,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2006,7 +2006,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2023,7 +2023,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2040,7 +2040,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2057,7 +2057,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2074,7 +2074,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2091,7 +2091,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2108,7 +2108,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2125,7 +2125,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2142,7 +2142,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2159,7 +2159,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2176,7 +2176,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2193,7 +2193,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2210,7 +2210,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2227,7 +2227,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2244,7 +2244,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2261,7 +2261,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2278,7 +2278,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2295,7 +2295,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2312,7 +2312,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2329,7 +2329,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2346,7 +2346,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2363,7 +2363,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -2380,7 +2380,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2397,7 +2397,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2414,7 +2414,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2431,7 +2431,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2448,7 +2448,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2465,7 +2465,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2482,7 +2482,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2499,7 +2499,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2516,7 +2516,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2533,7 +2533,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2550,7 +2550,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2567,7 +2567,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2584,7 +2584,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2601,7 +2601,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -3757,4 +3757,4 @@ "OriginalItemSpec": "wwwroot\\index.html" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json index 9b6152868fee..717f79b2969d 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json @@ -11,8 +11,8 @@ "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", - "AdditionalPublishProperties": "BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true;_PublishingBlazorWasmProject=true", - "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework", + "AdditionalPublishProperties": "_PublishingBlazorWasmProject=true;BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true", + "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;WebPublishProfileFile;TargetFramework", "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems", "AdditionalBuildProperties": "", "AdditionalBuildPropertiesToRemove": "RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework" @@ -217,7 +217,7 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -231,10 +231,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -251,7 +251,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -265,10 +265,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -282,10 +282,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -299,10 +299,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_bin\\publish.extension.txt.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -319,7 +319,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_bin\\publish.extension.txt.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -336,7 +336,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -353,7 +353,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -370,7 +370,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -387,7 +387,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -404,7 +404,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -421,7 +421,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -438,7 +438,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -455,7 +455,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -472,7 +472,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -489,7 +489,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -506,7 +506,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -523,7 +523,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -540,7 +540,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -557,7 +557,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -574,7 +574,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -591,7 +591,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -608,7 +608,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -625,7 +625,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -642,7 +642,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -659,7 +659,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -676,7 +676,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -693,7 +693,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -710,7 +710,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -727,7 +727,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -744,7 +744,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -761,7 +761,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -778,7 +778,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -795,7 +795,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -812,7 +812,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -829,7 +829,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -846,7 +846,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -863,7 +863,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -880,7 +880,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -897,7 +897,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -914,7 +914,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -931,7 +931,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -948,7 +948,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -965,7 +965,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -982,7 +982,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -999,7 +999,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1016,7 +1016,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1033,7 +1033,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1050,7 +1050,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1067,7 +1067,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1084,7 +1084,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1101,7 +1101,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1118,7 +1118,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1135,7 +1135,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1152,7 +1152,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1169,7 +1169,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1186,7 +1186,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1203,7 +1203,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1220,7 +1220,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1237,7 +1237,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1254,7 +1254,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1271,7 +1271,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1288,7 +1288,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1305,7 +1305,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1322,7 +1322,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1339,7 +1339,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1356,7 +1356,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1373,7 +1373,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1390,7 +1390,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1407,7 +1407,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1424,7 +1424,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1441,7 +1441,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1458,7 +1458,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1475,7 +1475,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1492,7 +1492,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1509,7 +1509,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1526,7 +1526,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1543,7 +1543,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1560,7 +1560,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1577,7 +1577,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1594,7 +1594,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1611,7 +1611,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1628,7 +1628,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1645,7 +1645,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1662,7 +1662,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1679,7 +1679,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1696,7 +1696,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1713,7 +1713,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1730,7 +1730,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1747,7 +1747,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1764,7 +1764,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1781,7 +1781,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1798,7 +1798,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1815,7 +1815,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1832,7 +1832,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1849,7 +1849,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1866,7 +1866,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1883,7 +1883,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1900,7 +1900,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1917,7 +1917,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1934,7 +1934,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1951,7 +1951,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1968,7 +1968,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1985,7 +1985,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2002,7 +2002,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2019,7 +2019,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2036,7 +2036,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2053,7 +2053,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2070,7 +2070,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2087,7 +2087,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2104,7 +2104,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2121,7 +2121,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2138,7 +2138,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2155,7 +2155,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2172,7 +2172,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2189,7 +2189,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2206,7 +2206,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2223,7 +2223,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2240,7 +2240,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2257,7 +2257,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2274,7 +2274,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2291,7 +2291,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2308,7 +2308,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2325,7 +2325,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2342,7 +2342,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2359,7 +2359,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2376,7 +2376,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2393,7 +2393,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2410,7 +2410,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2427,7 +2427,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2444,7 +2444,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2461,7 +2461,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2478,7 +2478,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2495,7 +2495,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2512,7 +2512,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -2529,7 +2529,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2546,7 +2546,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2563,7 +2563,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2580,7 +2580,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2597,7 +2597,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2614,7 +2614,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2631,7 +2631,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2648,7 +2648,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2665,7 +2665,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2682,7 +2682,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2699,7 +2699,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2716,7 +2716,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2733,7 +2733,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2750,7 +2750,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -4008,4 +4008,4 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.staticwebassets.json index e3a37bd10f08..cb0ccd5fa226 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.staticwebassets.json @@ -11,8 +11,8 @@ "Version": 2, "Source": "BlazorWasmHosted60.Client", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", - "AdditionalPublishProperties": "BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true;_PublishingBlazorWasmProject=true", - "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework", + "AdditionalPublishProperties": "_PublishingBlazorWasmProject=true;BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true", + "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;WebPublishProfileFile;TargetFramework", "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems", "AdditionalBuildProperties": "", "AdditionalBuildPropertiesToRemove": "RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework" @@ -182,7 +182,7 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\BlazorWasmHosted60.Client.pdb.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\BlazorWasmHosted60.Client.pdb.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -196,10 +196,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\BlazorWasmHosted60.Client.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\BlazorWasmHosted60.Client.pdb.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\BlazorWasmHosted60.Shared.pdb.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\BlazorWasmHosted60.Shared.pdb.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -213,10 +213,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\BlazorWasmHosted60.Shared.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\BlazorWasmHosted60.Shared.pdb.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -233,7 +233,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -247,10 +247,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -264,10 +264,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\BlazorWasmHosted60.Client.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\BlazorWasmHosted60.Client.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -284,7 +284,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\BlazorWasmHosted60.Client.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\BlazorWasmHosted60.Client.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\BlazorWasmHosted60.Client.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -301,7 +301,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\BlazorWasmHosted60.Client.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\BlazorWasmHosted60.Shared.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\BlazorWasmHosted60.Shared.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -318,7 +318,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\BlazorWasmHosted60.Shared.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\BlazorWasmHosted60.Shared.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\BlazorWasmHosted60.Shared.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -335,7 +335,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\BlazorWasmHosted60.Shared.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -352,7 +352,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -369,7 +369,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -386,7 +386,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -403,7 +403,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -420,7 +420,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -437,7 +437,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -454,7 +454,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -471,7 +471,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -488,7 +488,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -505,7 +505,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -522,7 +522,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -539,7 +539,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -556,7 +556,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -573,7 +573,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -590,7 +590,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -607,7 +607,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -624,7 +624,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -641,7 +641,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -658,7 +658,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -675,7 +675,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -692,7 +692,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -709,7 +709,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -726,7 +726,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -743,7 +743,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -760,7 +760,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -777,7 +777,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -794,7 +794,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -811,7 +811,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -828,7 +828,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -845,7 +845,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -862,7 +862,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -879,7 +879,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -896,7 +896,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -913,7 +913,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -930,7 +930,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -947,7 +947,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -964,7 +964,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -981,7 +981,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -998,7 +998,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1015,7 +1015,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1032,7 +1032,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1049,7 +1049,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1066,7 +1066,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1083,7 +1083,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1100,7 +1100,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1117,7 +1117,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1134,7 +1134,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1151,7 +1151,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1168,7 +1168,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1185,7 +1185,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1202,7 +1202,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1219,7 +1219,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1236,7 +1236,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1253,7 +1253,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -1270,7 +1270,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1287,7 +1287,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.timezones.blat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1304,7 +1304,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.timezones.blat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1321,7 +1321,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1338,7 +1338,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1355,7 +1355,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1372,7 +1372,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1389,7 +1389,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1406,7 +1406,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1423,7 +1423,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1440,7 +1440,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1457,7 +1457,7 @@ "OriginalItemSpec": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\Client\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "BlazorWasmHosted60.Client", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\Client\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json index ea3854005ff5..6ecc4396d8fe 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json @@ -227,151 +227,151 @@ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json index 35bc9570cea8..8a080ee169fd 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json @@ -153,7 +153,7 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -170,7 +170,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -184,10 +184,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -201,10 +201,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -218,10 +218,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -238,7 +238,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -255,7 +255,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -272,7 +272,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -289,7 +289,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -306,7 +306,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -323,7 +323,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -340,7 +340,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -357,7 +357,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -374,7 +374,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -391,7 +391,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -408,7 +408,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -425,7 +425,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -442,7 +442,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -459,7 +459,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -476,7 +476,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -493,7 +493,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -510,7 +510,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -527,7 +527,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -544,7 +544,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -561,7 +561,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -578,7 +578,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -595,7 +595,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -612,7 +612,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -629,7 +629,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -646,7 +646,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -663,7 +663,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -680,7 +680,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -697,7 +697,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -714,7 +714,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -731,7 +731,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -748,7 +748,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -765,7 +765,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -782,7 +782,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -799,7 +799,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -816,7 +816,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -833,7 +833,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -850,7 +850,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -867,7 +867,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -884,7 +884,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -901,7 +901,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -918,7 +918,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -935,7 +935,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -952,7 +952,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -969,7 +969,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -986,7 +986,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1003,7 +1003,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1020,7 +1020,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1037,7 +1037,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1054,7 +1054,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1071,7 +1071,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1088,7 +1088,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1105,7 +1105,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1122,7 +1122,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1139,7 +1139,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1156,7 +1156,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1173,7 +1173,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1190,7 +1190,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1207,7 +1207,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1224,7 +1224,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1241,7 +1241,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1258,7 +1258,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1275,7 +1275,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1292,7 +1292,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1309,7 +1309,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1326,7 +1326,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1343,7 +1343,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1360,7 +1360,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1377,7 +1377,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1394,7 +1394,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1411,7 +1411,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1428,7 +1428,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1445,7 +1445,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1462,7 +1462,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1479,7 +1479,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1496,7 +1496,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1513,7 +1513,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1530,7 +1530,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1547,7 +1547,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1564,7 +1564,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1581,7 +1581,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1598,7 +1598,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1615,7 +1615,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1632,7 +1632,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1649,7 +1649,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1666,7 +1666,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1683,7 +1683,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1700,7 +1700,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1717,7 +1717,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1734,7 +1734,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1751,7 +1751,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1768,7 +1768,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1785,7 +1785,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1802,7 +1802,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1819,7 +1819,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1836,7 +1836,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1853,7 +1853,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1870,7 +1870,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1887,7 +1887,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1904,7 +1904,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1921,7 +1921,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1938,7 +1938,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1955,7 +1955,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1972,7 +1972,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1989,7 +1989,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2006,7 +2006,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2023,7 +2023,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2040,7 +2040,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2057,7 +2057,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2074,7 +2074,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2091,7 +2091,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2108,7 +2108,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2125,7 +2125,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2142,7 +2142,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2159,7 +2159,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2176,7 +2176,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2193,7 +2193,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2210,7 +2210,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2227,7 +2227,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2244,7 +2244,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2261,7 +2261,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2278,7 +2278,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2295,7 +2295,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2312,7 +2312,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2329,7 +2329,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2346,7 +2346,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2363,7 +2363,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -2380,7 +2380,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2397,7 +2397,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2414,7 +2414,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2431,7 +2431,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2448,7 +2448,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2465,7 +2465,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2482,7 +2482,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2499,7 +2499,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2516,7 +2516,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2533,7 +2533,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2550,7 +2550,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2567,7 +2567,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2584,7 +2584,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2601,7 +2601,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -3757,4 +3757,4 @@ "OriginalItemSpec": "wwwroot\\index.html" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json index 9b47365e7606..4ddc3fa780c9 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json @@ -200,206 +200,207 @@ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.boot.json.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css", "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css", "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", @@ -781,6 +782,7 @@ "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll", "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll.gz", "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json index 1ec5b191ef22..0f185269e755 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json @@ -3434,7 +3434,7 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3451,7 +3451,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3468,7 +3468,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3485,7 +3485,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3502,7 +3502,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3519,7 +3519,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3536,7 +3536,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3553,7 +3553,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3570,7 +3570,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3587,7 +3587,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3604,7 +3604,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3621,7 +3621,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3638,7 +3638,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3655,7 +3655,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3672,7 +3672,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3689,7 +3689,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3706,7 +3706,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3723,7 +3723,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3740,7 +3740,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3757,7 +3757,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3774,7 +3774,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3791,7 +3791,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3808,7 +3808,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3825,7 +3825,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3842,7 +3842,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3859,7 +3859,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3876,7 +3876,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3893,7 +3893,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3910,7 +3910,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3927,7 +3927,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3944,7 +3944,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3961,7 +3961,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3978,7 +3978,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3995,7 +3995,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4012,7 +4012,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4029,7 +4029,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4046,7 +4046,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4063,7 +4063,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4080,7 +4080,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4097,7 +4097,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4114,7 +4114,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4131,7 +4131,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4148,7 +4148,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4165,7 +4165,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4182,7 +4182,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4199,7 +4199,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4216,7 +4216,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4233,7 +4233,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4250,7 +4250,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4267,7 +4267,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4284,7 +4284,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4301,7 +4301,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4318,7 +4318,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4335,7 +4335,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4352,7 +4352,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4369,7 +4369,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4386,7 +4386,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4403,7 +4403,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4420,7 +4420,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4437,7 +4437,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4454,7 +4454,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4471,7 +4471,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4488,7 +4488,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4505,7 +4505,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4522,7 +4522,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4539,7 +4539,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4556,7 +4556,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4573,7 +4573,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4590,7 +4590,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4607,7 +4607,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4624,7 +4624,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4641,7 +4641,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4658,7 +4658,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4675,7 +4675,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4692,7 +4692,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4709,7 +4709,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4726,7 +4726,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4743,7 +4743,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4760,7 +4760,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4777,7 +4777,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4794,7 +4794,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4811,7 +4811,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4828,7 +4828,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4845,7 +4845,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4862,7 +4862,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4879,7 +4879,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4896,7 +4896,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4913,7 +4913,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4930,7 +4930,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4947,7 +4947,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4964,7 +4964,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4981,7 +4981,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4998,7 +4998,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5015,7 +5015,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5032,7 +5032,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5049,7 +5049,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5066,7 +5066,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5083,7 +5083,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5100,7 +5100,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5117,7 +5117,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5134,7 +5134,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5151,7 +5151,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5168,7 +5168,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5185,7 +5185,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5202,7 +5202,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5219,7 +5219,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5236,7 +5236,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5253,7 +5253,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5270,7 +5270,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5287,7 +5287,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5304,7 +5304,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5321,7 +5321,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5338,7 +5338,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5355,7 +5355,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5372,7 +5372,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5389,7 +5389,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5406,7 +5406,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5423,7 +5423,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5440,7 +5440,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5457,7 +5457,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5474,7 +5474,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5491,7 +5491,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5508,7 +5508,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5525,7 +5525,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5542,7 +5542,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5559,7 +5559,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5576,7 +5576,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5593,7 +5593,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5610,7 +5610,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5627,7 +5627,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5644,7 +5644,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5661,7 +5661,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5678,7 +5678,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5695,7 +5695,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5712,7 +5712,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5729,7 +5729,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5746,7 +5746,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5763,7 +5763,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5780,7 +5780,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5797,7 +5797,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5814,7 +5814,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5831,7 +5831,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5848,7 +5848,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5865,7 +5865,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5882,7 +5882,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5899,7 +5899,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5916,7 +5916,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5933,7 +5933,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5950,7 +5950,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5967,7 +5967,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5984,7 +5984,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6001,7 +6001,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6018,7 +6018,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6035,7 +6035,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6052,7 +6052,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6069,7 +6069,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6086,7 +6086,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6103,7 +6103,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6120,7 +6120,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6137,7 +6137,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6154,7 +6154,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6171,7 +6171,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6188,7 +6188,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6205,7 +6205,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6222,7 +6222,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6239,7 +6239,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6256,7 +6256,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6273,7 +6273,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6290,7 +6290,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6307,7 +6307,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6324,7 +6324,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6341,7 +6341,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6358,7 +6358,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6375,7 +6375,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6392,7 +6392,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6409,7 +6409,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6426,7 +6426,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6443,7 +6443,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6460,7 +6460,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6477,7 +6477,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6494,7 +6494,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6511,7 +6511,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6528,7 +6528,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6545,7 +6545,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6562,7 +6562,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6579,7 +6579,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6596,7 +6596,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6613,7 +6613,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6630,7 +6630,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6647,7 +6647,24 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.boot.json.gz", + "SourceId": "blazorwasm-minimal", + "SourceType": "Computed", + "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/blazor.boot.json.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.boot.json.gz" + }, + { + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6664,7 +6681,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6681,7 +6698,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6698,7 +6715,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6715,7 +6732,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6732,7 +6749,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6749,7 +6766,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6766,7 +6783,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6783,7 +6800,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6800,7 +6817,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6817,7 +6834,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6919,4 +6936,4 @@ "OriginalItemSpec": "wwwroot\\index.html" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json index 31f14a605dbd..f0475082504a 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json @@ -382,6 +382,7 @@ "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll", "${OutputPath}\\wwwroot\\_framework\\WindowsBase.dll.gz", "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json", + "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz", "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js", "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz", "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll", diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json index e24d7012c556..e221adf32b2f 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json @@ -11,8 +11,8 @@ "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", - "AdditionalPublishProperties": "BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true;_PublishingBlazorWasmProject=true", - "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework", + "AdditionalPublishProperties": "_PublishingBlazorWasmProject=true;BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true", + "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;WebPublishProfileFile;TargetFramework", "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems", "AdditionalBuildProperties": "", "AdditionalBuildPropertiesToRemove": "RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework" @@ -3498,7 +3498,7 @@ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3515,7 +3515,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3532,7 +3532,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3549,7 +3549,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3566,7 +3566,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3583,7 +3583,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3600,7 +3600,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.CSharp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3617,7 +3617,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3634,7 +3634,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3651,7 +3651,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3668,7 +3668,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3685,7 +3685,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3702,7 +3702,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3719,7 +3719,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3736,7 +3736,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3753,7 +3753,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3770,7 +3770,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3787,7 +3787,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3804,7 +3804,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3821,7 +3821,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3838,7 +3838,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3855,7 +3855,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3872,7 +3872,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3889,7 +3889,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3906,7 +3906,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3923,7 +3923,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3940,7 +3940,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Win32.Registry.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3957,7 +3957,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3974,7 +3974,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -3991,7 +3991,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.AppContext.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4008,7 +4008,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4025,7 +4025,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4042,7 +4042,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Immutable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4059,7 +4059,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4076,7 +4076,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4093,7 +4093,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4110,7 +4110,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4127,7 +4127,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.DataAnnotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4144,7 +4144,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4161,7 +4161,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4178,7 +4178,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4195,7 +4195,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4212,7 +4212,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4229,7 +4229,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4246,7 +4246,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Core.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4263,7 +4263,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.Common.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4280,7 +4280,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.DataSetExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4297,7 +4297,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Data.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4314,7 +4314,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Contracts.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4331,7 +4331,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4348,7 +4348,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4365,7 +4365,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4382,7 +4382,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Process.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4399,7 +4399,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.StackTrace.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4416,7 +4416,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4433,7 +4433,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tools.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4450,7 +4450,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.TraceSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4467,7 +4467,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4484,7 +4484,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4501,7 +4501,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Drawing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4518,7 +4518,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Dynamic.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4535,7 +4535,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Asn1.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4552,7 +4552,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Tar.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Formats.Tar.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4569,7 +4569,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Tar.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Calendars.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4586,7 +4586,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4603,7 +4603,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Globalization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4620,7 +4620,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.Brotli.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4637,7 +4637,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4654,7 +4654,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.ZipFile.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4671,7 +4671,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Compression.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4688,7 +4688,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4705,7 +4705,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4722,7 +4722,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4739,7 +4739,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4756,7 +4756,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.FileSystem.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4773,7 +4773,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.IsolatedStorage.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4790,7 +4790,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.MemoryMappedFiles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4807,7 +4807,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4824,7 +4824,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4841,7 +4841,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.Pipes.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4858,7 +4858,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4875,7 +4875,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.IO.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4892,7 +4892,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4909,7 +4909,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4926,7 +4926,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.Queryable.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4943,7 +4943,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4960,7 +4960,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4977,7 +4977,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -4994,7 +4994,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5011,7 +5011,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.HttpListener.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5028,7 +5028,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Mail.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5045,7 +5045,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NameResolution.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5062,7 +5062,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.NetworkInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5079,7 +5079,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Ping.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5096,7 +5096,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5113,7 +5113,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Quic.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5130,7 +5130,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Requests.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5147,7 +5147,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5164,7 +5164,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.ServicePoint.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5181,7 +5181,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.Sockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5198,7 +5198,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebClient.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5215,7 +5215,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebHeaderCollection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5232,7 +5232,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5249,7 +5249,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.Client.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5266,7 +5266,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.WebSockets.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5283,7 +5283,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Net.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5300,7 +5300,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.Vectors.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5317,7 +5317,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5334,7 +5334,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5351,7 +5351,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5368,7 +5368,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.DataContractSerialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5385,7 +5385,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5402,7 +5402,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5419,7 +5419,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Private.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5436,7 +5436,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.DispatchProxy.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5453,7 +5453,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5470,7 +5470,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5487,7 +5487,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Emit.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5504,7 +5504,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5521,7 +5521,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5538,7 +5538,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5555,7 +5555,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.TypeExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5572,7 +5572,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Reflection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5589,7 +5589,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Reader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5606,7 +5606,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5623,7 +5623,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Resources.Writer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5640,7 +5640,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5657,7 +5657,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5674,7 +5674,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5691,7 +5691,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Handles.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5708,7 +5708,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5725,7 +5725,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5742,7 +5742,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.InteropServices.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5759,7 +5759,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Intrinsics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5776,7 +5776,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5793,7 +5793,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Numerics.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5810,7 +5810,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Formatters.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5827,7 +5827,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5844,7 +5844,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5861,7 +5861,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5878,7 +5878,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5895,7 +5895,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5912,7 +5912,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.AccessControl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5929,7 +5929,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5946,7 +5946,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Algorithms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5963,7 +5963,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Cng.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5980,7 +5980,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Csp.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -5997,7 +5997,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6014,7 +6014,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6031,7 +6031,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6048,7 +6048,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6065,7 +6065,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6082,7 +6082,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6099,7 +6099,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.Principal.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6116,7 +6116,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.SecureString.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6133,7 +6133,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Security.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6150,7 +6150,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceModel.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6167,7 +6167,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ServiceProcess.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6184,7 +6184,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.CodePages.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6201,7 +6201,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6218,7 +6218,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encoding.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6235,7 +6235,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6252,7 +6252,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6269,7 +6269,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Text.RegularExpressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6286,7 +6286,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Channels.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6303,7 +6303,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Overlapped.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6320,7 +6320,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Dataflow.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6337,7 +6337,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6354,7 +6354,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.Parallel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6371,7 +6371,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6388,7 +6388,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Thread.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6405,7 +6405,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6422,7 +6422,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.Timer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6439,7 +6439,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6456,7 +6456,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.Local.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6473,7 +6473,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Transactions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6490,7 +6490,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.ValueTuple.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6507,7 +6507,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.HttpUtility.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6524,7 +6524,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6541,7 +6541,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Windows.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6558,7 +6558,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6575,7 +6575,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.ReaderWriter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6592,7 +6592,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.Serialization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6609,7 +6609,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6626,7 +6626,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.XDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6643,7 +6643,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XPath.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6660,7 +6660,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlDocument.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6677,7 +6677,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.XmlSerializer.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6694,7 +6694,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.Xml.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6711,7 +6711,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6728,7 +6728,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\WindowsBase.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6745,7 +6745,24 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.boot.json.gz", + "SourceId": "blazorwasm", + "SourceType": "Project", + "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/blazor.boot.json.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.boot.json.gz" + }, + { + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6762,7 +6779,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6779,7 +6796,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6796,7 +6813,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6813,7 +6830,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6830,7 +6847,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6847,7 +6864,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6864,7 +6881,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6881,7 +6898,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6898,7 +6915,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\mscorlib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -6915,7 +6932,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -7051,4 +7068,4 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json index 925df560685b..5757667cb98f 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json @@ -217,8 +217,6 @@ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", "${OutputPath}\\wwwroot\\appsettings.development.json", - "${OutputPath}\\wwwroot\\appsettings.development.json.br", - "${OutputPath}\\wwwroot\\appsettings.development.json.gz", "${OutputPath}\\wwwroot\\blazorwasm-minimal.styles.css", "${OutputPath}\\wwwroot\\css\\app.css", "${OutputPath}\\wwwroot\\index.html", @@ -230,151 +228,151 @@ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat", "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat", "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", - "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", + "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll", "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll", @@ -659,8 +657,6 @@ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br", "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz", "${OutputPath}\\wwwroot\\appsettings.development.json", - "${OutputPath}\\wwwroot\\appsettings.development.json.br", - "${OutputPath}\\wwwroot\\appsettings.development.json.gz", "${OutputPath}\\wwwroot\\blazorwasm-minimal.styles.css", "${OutputPath}\\wwwroot\\css\\app.css", "${OutputPath}\\wwwroot\\index.html" diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json index 02936eab72a0..f0dd29196833 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json @@ -153,7 +153,7 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -170,7 +170,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -184,10 +184,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm-minimal.pdb.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -201,10 +201,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -218,10 +218,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -238,7 +238,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -255,7 +255,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -272,7 +272,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -289,7 +289,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -306,7 +306,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -323,7 +323,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -340,7 +340,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -357,7 +357,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -374,7 +374,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -391,7 +391,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -408,7 +408,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -425,7 +425,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -442,7 +442,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -459,7 +459,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -476,7 +476,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -493,7 +493,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -510,7 +510,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -527,7 +527,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -544,7 +544,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -561,7 +561,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -578,7 +578,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -595,7 +595,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -612,7 +612,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -629,7 +629,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -646,7 +646,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -663,7 +663,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -680,7 +680,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -697,7 +697,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -714,7 +714,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -731,7 +731,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -748,7 +748,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -765,7 +765,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -782,7 +782,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -799,7 +799,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -816,7 +816,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -833,7 +833,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -850,7 +850,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -867,7 +867,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -884,7 +884,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -901,7 +901,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -918,7 +918,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -935,7 +935,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -952,7 +952,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -969,7 +969,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -986,7 +986,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1003,7 +1003,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1020,7 +1020,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1037,7 +1037,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1054,7 +1054,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1071,7 +1071,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1088,7 +1088,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1105,7 +1105,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1122,7 +1122,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1139,7 +1139,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1156,7 +1156,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1173,7 +1173,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1190,7 +1190,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1207,7 +1207,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1224,7 +1224,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1241,7 +1241,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1258,7 +1258,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1275,7 +1275,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1292,7 +1292,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1309,7 +1309,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1326,7 +1326,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1343,7 +1343,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1360,7 +1360,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1377,7 +1377,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1394,7 +1394,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1411,7 +1411,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1428,7 +1428,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1445,7 +1445,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1462,7 +1462,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1479,7 +1479,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1496,7 +1496,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1513,7 +1513,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1530,7 +1530,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1547,7 +1547,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1564,7 +1564,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1581,7 +1581,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1598,7 +1598,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1615,7 +1615,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1632,7 +1632,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1649,7 +1649,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1666,7 +1666,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1683,7 +1683,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1700,7 +1700,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1717,7 +1717,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1734,7 +1734,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1751,7 +1751,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1768,7 +1768,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1785,7 +1785,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1802,7 +1802,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1819,7 +1819,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1836,7 +1836,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1853,7 +1853,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1870,7 +1870,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1887,7 +1887,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1904,7 +1904,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1921,7 +1921,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1938,7 +1938,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1955,7 +1955,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1972,7 +1972,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1989,7 +1989,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2006,7 +2006,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2023,7 +2023,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2040,7 +2040,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2057,7 +2057,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2074,7 +2074,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2091,7 +2091,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2108,7 +2108,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2125,7 +2125,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2142,7 +2142,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2159,7 +2159,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2176,7 +2176,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2193,7 +2193,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2210,7 +2210,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2227,7 +2227,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2244,7 +2244,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2261,7 +2261,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2278,7 +2278,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2295,7 +2295,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2312,7 +2312,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2329,7 +2329,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2346,7 +2346,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2363,7 +2363,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -2380,7 +2380,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2397,7 +2397,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm-minimal.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2414,7 +2414,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2431,7 +2431,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2448,7 +2448,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2465,7 +2465,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2482,7 +2482,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2499,7 +2499,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2516,7 +2516,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2533,7 +2533,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2550,7 +2550,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2567,7 +2567,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2584,7 +2584,7 @@ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2601,7 +2601,7 @@ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm-minimal", "SourceType": "Computed", "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2617,40 +2617,6 @@ "CopyToPublishDirectory": "PreserveNewest", "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz" }, - { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\appsettings.development.json.br", - "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "appsettings.development.json.br", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\wwwroot\\appsettings.development.json", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "br", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\wwwroot\\appsettings.development.json.br" - }, - { - "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\appsettings.development.json.gz", - "SourceId": "blazorwasm-minimal", - "SourceType": "Discovered", - "ContentRoot": "${ProjectPath}\\wwwroot\\", - "BasePath": "/", - "RelativePath": "appsettings.development.json.gz", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Alternative", - "RelatedAsset": "${ProjectPath}\\wwwroot\\appsettings.development.json", - "AssetTraitName": "Content-Encoding", - "AssetTraitValue": "gzip", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\wwwroot\\appsettings.development.json.gz" - }, { "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll", "SourceId": "blazorwasm-minimal", @@ -3825,4 +3791,4 @@ "OriginalItemSpec": "wwwroot\\index.html" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json index 93fe9d8e7b22..ad223899497a 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json @@ -11,8 +11,8 @@ "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", - "AdditionalPublishProperties": "BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true;_PublishingBlazorWasmProject=true", - "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework", + "AdditionalPublishProperties": "_PublishingBlazorWasmProject=true;BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true", + "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;WebPublishProfileFile;TargetFramework", "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems", "AdditionalBuildProperties": "", "AdditionalBuildPropertiesToRemove": "RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework" @@ -200,7 +200,7 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -214,10 +214,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -234,7 +234,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -248,10 +248,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -265,10 +265,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -282,10 +282,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -302,7 +302,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -319,7 +319,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -336,7 +336,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -353,7 +353,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -370,7 +370,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -387,7 +387,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -404,7 +404,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -421,7 +421,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -438,7 +438,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -455,7 +455,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -472,7 +472,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -489,7 +489,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -506,7 +506,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -523,7 +523,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -540,7 +540,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -557,7 +557,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -574,7 +574,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -591,7 +591,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -608,7 +608,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -625,7 +625,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -642,7 +642,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -659,7 +659,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -676,7 +676,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -693,7 +693,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -710,7 +710,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -727,7 +727,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -744,7 +744,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -761,7 +761,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -778,7 +778,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -795,7 +795,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -812,7 +812,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -829,7 +829,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -846,7 +846,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -863,7 +863,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -880,7 +880,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -897,7 +897,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -914,7 +914,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -931,7 +931,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -948,7 +948,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -965,7 +965,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -982,7 +982,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -999,7 +999,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1016,7 +1016,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1033,7 +1033,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1050,7 +1050,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1067,7 +1067,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1084,7 +1084,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1101,7 +1101,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1118,7 +1118,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1135,7 +1135,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1152,7 +1152,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1169,7 +1169,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1186,7 +1186,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1203,7 +1203,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1220,7 +1220,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1237,7 +1237,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1254,7 +1254,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1271,7 +1271,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1288,7 +1288,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1305,7 +1305,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1322,7 +1322,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1339,7 +1339,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1356,7 +1356,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1373,7 +1373,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1390,7 +1390,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1407,7 +1407,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1424,7 +1424,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1441,7 +1441,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1458,7 +1458,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1475,7 +1475,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1492,7 +1492,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1509,7 +1509,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1526,7 +1526,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1543,7 +1543,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1560,7 +1560,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1577,7 +1577,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1594,7 +1594,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1611,7 +1611,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1628,7 +1628,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1645,7 +1645,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1662,7 +1662,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1679,7 +1679,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1696,7 +1696,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1713,7 +1713,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1730,7 +1730,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1747,7 +1747,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1764,7 +1764,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1781,7 +1781,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1798,7 +1798,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1815,7 +1815,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1832,7 +1832,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1849,7 +1849,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1866,7 +1866,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1883,7 +1883,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1900,7 +1900,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1917,7 +1917,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1934,7 +1934,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1951,7 +1951,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1968,7 +1968,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1985,7 +1985,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2002,7 +2002,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2019,7 +2019,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2036,7 +2036,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2053,7 +2053,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2070,7 +2070,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2087,7 +2087,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2104,7 +2104,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2121,7 +2121,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2138,7 +2138,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2155,7 +2155,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2172,7 +2172,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2189,7 +2189,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2206,7 +2206,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2223,7 +2223,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2240,7 +2240,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2257,7 +2257,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2274,7 +2274,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2291,7 +2291,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2308,7 +2308,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2325,7 +2325,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2342,7 +2342,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2359,7 +2359,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2376,7 +2376,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2393,7 +2393,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2410,7 +2410,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2427,7 +2427,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2444,7 +2444,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2461,7 +2461,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -2478,7 +2478,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2495,7 +2495,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2512,7 +2512,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2529,7 +2529,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2546,7 +2546,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2563,7 +2563,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2580,7 +2580,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2597,7 +2597,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2614,7 +2614,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2631,7 +2631,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2648,7 +2648,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2665,7 +2665,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2682,7 +2682,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2699,7 +2699,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -3940,4 +3940,4 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json index 93fe9d8e7b22..ad223899497a 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json @@ -11,8 +11,8 @@ "Version": 2, "Source": "blazorwasm", "GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems", - "AdditionalPublishProperties": "BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true;_PublishingBlazorWasmProject=true", - "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework", + "AdditionalPublishProperties": "_PublishingBlazorWasmProject=true;BuildProjectReferences=false;ResolveAssemblyReferencesFindRelatedSatellites=true", + "AdditionalPublishPropertiesToRemove": "NoBuild;RuntimeIdentifier;WebPublishProfileFile;TargetFramework", "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems", "AdditionalBuildProperties": "", "AdditionalBuildPropertiesToRemove": "RuntimeIdentifier;SelfContained;WebPublishProfileFile;TargetFramework" @@ -200,7 +200,7 @@ "OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -214,10 +214,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\RazorClassLibrary.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazor.webassembly.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -234,7 +234,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -248,10 +248,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\blazorwasm.pdb.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -265,10 +265,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.js.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -282,10 +282,10 @@ "AssetTraitValue": "gzip", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz" + "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\dotnet.wasm.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -302,7 +302,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -319,7 +319,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -336,7 +336,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -353,7 +353,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -370,7 +370,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -387,7 +387,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -404,7 +404,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -421,7 +421,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -438,7 +438,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Components.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -455,7 +455,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -472,7 +472,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -489,7 +489,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -506,7 +506,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -523,7 +523,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -540,7 +540,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -557,7 +557,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -574,7 +574,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -591,7 +591,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -608,7 +608,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -625,7 +625,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -642,7 +642,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Configuration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -659,7 +659,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -676,7 +676,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -693,7 +693,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -710,7 +710,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -727,7 +727,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -744,7 +744,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -761,7 +761,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -778,7 +778,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -795,7 +795,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -812,7 +812,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -829,7 +829,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -846,7 +846,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -863,7 +863,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -880,7 +880,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Logging.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -897,7 +897,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -914,7 +914,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Options.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -931,7 +931,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -948,7 +948,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.Extensions.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -965,7 +965,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -982,7 +982,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -999,7 +999,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1016,7 +1016,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\Microsoft.JSInterop.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1033,7 +1033,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\RazorClassLibrary.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1050,7 +1050,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\RazorClassLibrary.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1067,7 +1067,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1084,7 +1084,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Buffers.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1101,7 +1101,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1118,7 +1118,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Concurrent.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1135,7 +1135,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1152,7 +1152,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.NonGeneric.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1169,7 +1169,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1186,7 +1186,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.Specialized.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1203,7 +1203,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1220,7 +1220,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Collections.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1237,7 +1237,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1254,7 +1254,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Annotations.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1271,7 +1271,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1288,7 +1288,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1305,7 +1305,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1322,7 +1322,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.TypeConverter.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1339,7 +1339,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1356,7 +1356,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ComponentModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1373,7 +1373,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1390,7 +1390,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Console.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1407,7 +1407,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1424,7 +1424,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Debug.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1441,7 +1441,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1458,7 +1458,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1475,7 +1475,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1492,7 +1492,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Diagnostics.Tracing.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1509,7 +1509,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1526,7 +1526,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.FileSystem.Watcher.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1543,7 +1543,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1560,7 +1560,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.IO.Pipelines.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1577,7 +1577,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1594,7 +1594,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.Expressions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1611,7 +1611,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1628,7 +1628,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Linq.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1645,7 +1645,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1662,7 +1662,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Memory.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1679,7 +1679,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1696,7 +1696,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Net.Http.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1713,7 +1713,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1730,7 +1730,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.ObjectModel.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1747,7 +1747,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1764,7 +1764,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.CoreLib.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1781,7 +1781,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1798,7 +1798,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Private.Uri.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1815,7 +1815,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1832,7 +1832,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1849,7 +1849,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1866,7 +1866,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Emit.Lightweight.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1883,7 +1883,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1900,7 +1900,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Reflection.Primitives.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1917,7 +1917,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1934,7 +1934,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Resources.ResourceManager.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1951,7 +1951,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1968,7 +1968,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -1985,7 +1985,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2002,7 +2002,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Extensions.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2019,7 +2019,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2036,7 +2036,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2053,7 +2053,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.JavaScript.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2070,7 +2070,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2087,7 +2087,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2104,7 +2104,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.Loader.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2121,7 +2121,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2138,7 +2138,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Runtime.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2155,7 +2155,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2172,7 +2172,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Claims.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2189,7 +2189,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2206,7 +2206,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Security.Cryptography.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2223,7 +2223,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2240,7 +2240,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Encodings.Web.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2257,7 +2257,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2274,7 +2274,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Text.Json.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2291,7 +2291,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2308,7 +2308,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.Tasks.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2325,7 +2325,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2342,7 +2342,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.ThreadPool.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2359,7 +2359,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2376,7 +2376,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.Threading.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2393,7 +2393,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2410,7 +2410,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\System.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2427,7 +2427,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2444,7 +2444,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.boot.json.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2461,7 +2461,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazor.webassembly.js.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\", @@ -2478,7 +2478,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2495,7 +2495,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\blazorwasm.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2512,7 +2512,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.js.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2529,7 +2529,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\dotnet.wasm.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2546,7 +2546,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2563,7 +2563,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2580,7 +2580,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2597,7 +2597,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2614,7 +2614,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2631,7 +2631,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_EFIGS.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2648,7 +2648,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2665,7 +2665,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\icudt_no_CJK.dat.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2682,7 +2682,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.br", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -2699,7 +2699,7 @@ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br" }, { - "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz", + "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\publish\\_framework\\netstandard.dll.gz", "SourceId": "blazorwasm", "SourceType": "Project", "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\", @@ -3940,4 +3940,4 @@ "OriginalItemSpec": "wwwroot\\wwwroot\\exampleJsInterop.js" } ] -} +} \ No newline at end of file diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs index af124ea0fdfd..77b9a08fa271 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs @@ -5,6 +5,7 @@ using System.IO; using System.Linq; using System.Text.Json; +using System.Xml.Linq; using FluentAssertions; using Microsoft.NET.Sdk.WebAssembly; using Microsoft.NET.TestFramework; @@ -57,7 +58,19 @@ public void Build_GzipCompression_IsIncremental() { // Arrange var testAsset = "BlazorWasmWithLibrary"; - var projectDirectory = CreateAspNetSdkTestAsset(testAsset); + var projectDirectory = CreateAspNetSdkTestAsset(testAsset).WithProjectChanges((path, document) => + { + if (Path.GetFileNameWithoutExtension(path) == "blazorwasm") + { + // Since blazor.boot.json gets modified on each build, we explicitly exclude it from compression so + // its compressed asset doesn't fail the thumb print check. + document.Root.Add(XElement.Parse(""" + + $(CompressionExcludePatterns);_framework\blazor.boot.json + + """)); + } + }); var build = new BuildCommand(projectDirectory, "blazorwasm"); build.WithWorkingDirectory(projectDirectory.TestRoot); @@ -65,7 +78,7 @@ public void Build_GzipCompression_IsIncremental() .Should() .Pass(); - var gzipCompressionDirectory = Path.Combine(projectDirectory.TestRoot, "blazorwasm", "obj", "Debug", DefaultTfm, "build-gz"); + var gzipCompressionDirectory = Path.Combine(projectDirectory.TestRoot, "blazorwasm", "obj", "Debug", DefaultTfm, "compressed"); new DirectoryInfo(gzipCompressionDirectory).Should().Exist(); // Act diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs index 045aca6c840e..f5f0b3272c03 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs +++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs @@ -105,7 +105,7 @@ public void Publish_WithLinkerAndCompression_IsIncremental() var buildOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm); // Act - var compressedFilesFolder = Path.Combine(testInstance.TestRoot, "blazorwasm", "obj", "Debug", DefaultTfm, "compress"); + var compressedFilesFolder = Path.Combine(testInstance.TestRoot, "blazorwasm", "obj", "Debug", DefaultTfm, "compressed", "publish"); var thumbPrint = FileThumbPrint.CreateFolderThumbprint(testInstance, compressedFilesFolder); // Assert @@ -137,7 +137,7 @@ public void Publish_WithoutLinkerAndCompression_IsIncremental() var buildOutputDirectory = publishCommand.GetOutputDirectory(DefaultTfm); // Act - var compressedFilesFolder = Path.Combine(testInstance.TestRoot, "blazorwasm", "obj", "Debug", DefaultTfm, "compress"); + var compressedFilesFolder = Path.Combine(testInstance.TestRoot, "blazorwasm", "obj", "Debug", DefaultTfm, "compressed", "publish"); var thumbPrint = FileThumbPrint.CreateFolderThumbprint(testInstance, compressedFilesFolder); // Assert diff --git a/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets b/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets index b2dd9d2abff8..0d789d3e3e49 100644 --- a/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets +++ b/src/WasmSdk/Targets/Microsoft.NET.Sdk.WebAssembly.Current.targets @@ -19,26 +19,9 @@ Copyright (c) .NET Foundation. All rights reserved. true - - - - - All - gzip - _framework\** - _framework\blazor.boot.json - - - - Publish - brotli - - - + + $(CompressionIncludePatterns);_framework\** + @@ -91,6 +74,7 @@ Copyright (c) .NET Foundation. All rights reserved. false _GatherWasmFilesToPublish;$(WasmNestedPublishAppDependsOn) <_WasmNestedPublishAppPreTarget>ComputeFilesToPublish + true @@ -134,7 +118,6 @@ Copyright (c) .NET Foundation. All rights reserved. ProcessPublishFilesForWasm; ComputeWasmExtensions; _AddPublishWasmBootJsonToStaticWebAssets; - _CollectAssetsToCompressForPublish; @@ -429,6 +412,7 @@ Copyright (c) .NET Foundation. All rights reserved. + @@ -466,24 +450,6 @@ Copyright (c) .NET Foundation. All rights reserved. - - - - WebAssemblyGzip - - - - WebAssemblyBrotli - - - -